Content Type
Profiles
Forums
Events
Everything posted by gunsmokingman
-
You are really wrong to install it in a VM machine 1:\ VM machine limits the graphics 2:\ performance unless you have a lot then it will be very slow as compared to a real install There has been alot of improvement in each release build, the only real bad build I tested was 5270, I could not get that to run for a hour with out a blue screen. As to the original question build 5308 supports upgades but it is buggy, I would not recommend this method. The best way is a clean install, on all released version of Vista.
-
Read this Thread to see if it helps.
-
1:\ The script exit itself after the cmd file runs Exit For this is the cmd that does it. 2:\ It is alway best to give a full path to the file that you want to run. Example I ran this script from my desktop which is on D:\Documents and Settings\Gunsmokingman\Desktop to start this file C:\Testme\TheTest.txt, this needed a full path to the text file for it to run.
-
This is the line for the bitmap You will have to add a bitmap in the Bitmap folder of resource hacker, this CONTROL 14350 is the bitmap name in the bitmap folder.
-
That should be the ftp address not where it comming from, as that path is pass from the send to part,which is later in the script.
-
Here is what my code looks like for The Run Box What it looks like
-
Try replacing the path name \ with / that instead. Eg ftp://YOUR_SERVER/A_SUB_FOLDER/ make sure the file path is in the same format.
-
I have been looking at the script and it is pretty messed up here is One example of what I have found incorrect You have this Two times and no Close for it. This is at Line 39 and Line 61 in the script. set fx = fsox.OpenTextFile(outputFile, ForWriting, True) Here is what I have made for you to work with I will repost some more in the next couple of days if you want. I am not a coder but I will try my best to get it working properly for you.
-
Glad I was able to help
-
You will have to edit some of the VBS file to allow that file to be uploaded. This color is where you have to add the file type EG "log" The array should look like this with what you want to upload arASCII = Array("txt", "cgi", "pl", "htm", "html", "asp", "js", "vbs", "log")
-
Rename Computer and Join Domain
gunsmokingman replied to Incroyable HULK's topic in Unattended Windows 2000/XP/2003
I do not know if this script will help Save as RenameComputer.vbs Here is a SFX of the above codeI Gunsmokingman give all users full permission to do what ever they want with this script. ChangeComputerName.exe -
Mine just installs that way, from the install. What build of Vista are you using, I am using the latest from Microsoft, Vista 5342. It could be a bad build that you down loaded, I get mine from the connect site as I am in the beta. Go to the site manufacture of your sound card down load the latest drivers, then try to install them in compadibility mode. Does your device manager look like this Remove By Gsm
-
Have you got these services running, Windows Audio, Windows Audio Endpoint Builder If so and it still not working, try my hack to use the real administator account then try and install the drivers again.
-
I posted a hack on how to use the real administrator account in this thread How To Use The Real Admin Account
-
I have no problems with my sound card working, have you tried to install the drivers for XP in compadibility mode. Are you sure, because there is only one administartor for Vista they have a neutor admin group which is not the same as a administrator, I run a hack so I can use the real administrator in Vista.Here is what I do 1:\ Start menu right click the Computer and select Manage 2:\ Expand the Local User And Groups 3:\ Select Users 4:\ Optional but it what I do Rename the Administator to a another Name 5:\ Run the below reg entry this allows the Renamed Administrator to show on the log on screen Rename_Admin.reg Remove By Gsm
-
I have added another loop for the harddrive, just fill in the path that you need. In the above you could also check for a folder exists also EG If Fso.FolderExists(StrDrv.DriveLetter & ":\FOLDER_NAME_HERE") Then
-
You would need to make a new Object Here a re-edit script for you, this script will run only if a XP CD in the drive is XP SP2 Saves this as THE_NAME_YOU_WANT.vbs This is a demo VBS using %Comspec% and doing a action, this will only run if a XP CD is in the drive and must be SP2. Save As THE_NAME_YOU_WANT.vbs You can change the check file name if you like to suit your needs Change this color text to suit your needs, this is the files it checks for on a CD or DVD drive. If Fso.FileExists(StrDrv.DriveLetter & ":\win51ip.SP2") Then
-
The script will detect only CD or DVD drives I was only giving a alternative to this for %%i in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist %%i:\whatever.ico set cdrom=%%i:\ Since the vbs script will only detect CD or DVD drives it should avoid the push button problem with the card reader, as to how he was using the above or when he was using it I do not know. If you post what you have and are trying to do, I will try and help you fix the problem.