Remove games remotely

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear All,
My users run Windows 2000 Prof SP4 and they are as member of my PDC (run on
Windows 2000 AS SP4) ..there are Windows 2000 games in their PC (such as.
FreeCell, Minesweper, PinBall, Solitaire) ..and I want to remove them
remotely.. is it possible? .. if so .. how to do this? many thanks in advance

Regards
Winanjaya
 
You could get a remote administration program, such as PCAnywhere or Radmin.
Install on each of the clients and then you can have full control over them
remotely.

Radmin is an excellent utility. http://www.radmin.com/

Dan
 
Run this in a script:

sysocmgr /i:%windir%\inf\sysoc.inf /u:c:\ocm.txt /q

You need an answer file for it:

[Components]
pinball = off
games = off
Minesweeper = off
Solitaire = off
Freecell = off

The path to the answer file is specified in the u switch in the command,
sysocmgr /i:%windir%\inf\sysoc.inf /u:[path]\ocm.txt /q


Or push this to the machines:

Rundll32.exe setupapi,InstallHinfSection FreecellUninstall 132 games.inf

Rundll32.exe setupapi,InstallHinfSection MinesweeperUninstall 132 games.inf

Rundll32.exe setupapi,InstallHinfSection SolitaireUninstall 132 games.inf

Rundll32.exe setupapi,InstallHinfSection Pinball.Remove 132 pinball.inf


John
 
Back
Top