Everything posted by jasaund70891
-
Virtual PC Trial Serial
I'm such an id***!!! Thanks, I have a bad habit of downloading before reading!
-
Virtual PC Trial Serial
yeah I tried that, download the trail and when you go to install it says you need a serial number to install the trial, so I hit the link to goto the register page, so they will email you a serial and it's a dead site. I assume that it is because of the microsoft buyout. But the trial is listed on the microsoft downloads page. I mean if anyone has download the trial in the past and they still have a serial please help a poor fella out?
-
Virtual PC Trial Serial
trial 5.2, the register page isn't even working, I thought that since it's just a trial..maybe? ADMINS if this is'nt acceptable please remove this post.
-
Virtual PC Trial Serial
I just download the trial and I can't seem to get a serial number, I guess they are in the transfer phase of being bought by microsoft and I was wondering if anyone had a valid trial serial they could email me? jasaund7089@charter.net
-
The Official Switches Thread Only
pc cillin: pcc.msi /qb REBOOT=Supress
-
differance between %systemroot% and %systemdrive%
now it makes sence thanks for you help!
-
"Cannot find C:\install\main_batch.cmd"
[GuiRunOnce] %systemdrive%\$OEM$\$1\$INSTALL\main_batch.cmd %systemdrive%\$OEM$\$1\$INSTALL\hotfixes.cmd %systemdrive%\$OEM$\$1\$INSTALL\applications.cmd should be [GuiRunOnce] %systemdrive%\install\main_batch.cmd %systemdrive%\install\hotfixes.cmd %systemdrive%\install\applications.cmd
-
differance between %systemroot% and %systemdrive%
what is the differance between %systemroot% and %systemdrive%? reason I'm asking is that I have this script to install pccillin off the windows xp installation cd and I try to run it manualy off the cd and it keep trying to look in c:\install\applications\pcc not e:\$oem$\$1\install\applications\pcc. application.cmd: CLS @echo off ECHO. ECHO Installing Windows Update ECHO Installing PC-Cillin Antivirus Software start /wait %systemdrive%\install\applications\pcc\pcc.msi /qb REBOOT =Suppress ECHO Restarting the PC in 1 minute... psshutdown.exe -r -t 90 -f -m "Windows XP will now restart in 1 minute, this will give enough time for the shortcuts to update and for the shell to fully load before its ready to restart!" ECHO. ECHO Deleting Temp Installation Files... RD /S /Q %systemdrive%\install <--is this necessary? RD /S /Q %systemdrive%\Drivers <--is this necessary? RD /S /Q %systemdrive%\nvidia45_24 <--is this necessary? ECHO. EXIT I copied it from a site and modified it.