Jump to content

HolgerHops

Member
  • Posts

    2
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Germany

About HolgerHops

HolgerHops's Achievements

0

Reputation

  1. First I would like to thank you for this great script. On my computer the workstation service is disabled, so the script hangs when it tries to figure out the OS version. Problem lies here: :: Find host OS - based on code posted by Yzöwl on MSFN.org SET HostOS=Unknown FOR /F "DELIMS=" %%I IN ('NET CONFIG WORK^|FIND /I " Windows "') DO ( ECHO %%I|FIND "2000">NUL 2>&1&&(SET HostOS=2000&GOTO :HOSD) ECHO %%I|FIND "2002">NUL 2>&1&&(SET HostOS=XP&GOTO :HOSD) ECHO %%I|FIND "2003">NUL 2>&1&&(SET HostOS=2003&GOTO :HOSD) ECHO %%I|FIND /I "Vista">NUL 2>&1&&(SET HostOS=Vista&GOTO :HOSD) ) as this code relies on the workstation service to function properly. This Code should do the same, but doesn't rely on the workstation service: FOR /F "DELIMS=" %%I IN ('ver') DO ( ECHO %%I|FIND "2000">NUL 2>&1&&(SET HostOS=2000&GOTO :HOSD) ECHO %%I|FIND "XP">NUL 2>&1&&(SET HostOS=XP&GOTO :HOSD) ECHO %%I|FIND "2003">NUL 2>&1&&(SET HostOS=2003&GOTO :HOSD) ECHO %%I|FIND /I "VISTA">NUL 2>&1&&(SET HostOS=Vista&GOTO :HOSD) )
  2. Hi, first I would like to thank Nuhi for his awesome program. Keep up the great work! Here's my problem: After I nLited my CD, certain programs are constantly poping up a runtime error 217 box (programs are Gmer and Directory Opus, one time the Internet Explorer also poped up this error message). So I played around a little with XPLite and removed the COM+ components. Now it seems like the error is gone. I can even reinstall COM+ and the error doesn't appear again. It would be nice if anyone could confirm this. The error is really strange, that means it doesn't always appear when you close Directory Opus. So open and close it a few times, to check if you have this error. LAST_SESSION.INI
×
×
  • Create New...