Archive for July, 2010

Deploy Windows Deployment Services (WDS) Step by Step

A great step by step Windows Deployment Services setup including creating and deploying images. The tutorial can be found by clicking here

Remove all local profiles with exceptions

Copy the below code to notepad and rename as a vbs file. Example – DeleteLocalProfiles.vbs. If the script does not work, re-enter the speech marks ( ” )
Const LocalDocumentsFolder = “C:\Documents and Settings\”
set objFSO = createobject(“Scripting.FileSystemObject”)
set objFolder = objFSO.GetFolder(localdocumentsfolder)
on error resume next
for each fldr in objFolder.SubFolders
 if not isexception(fldr.name) then
  objFSO.DeleteFolder fldr.path, True
 end if
next
Function isException(byval foldername)
 select [...]

July 27, 2010 • Posted in: Scripts • No Comments

Remove Local Profiles Via Script

If you wish to remove a selected number of local profiles via script but not all, for example remove all local profiles starting with 80 or 90 or pc etc, you can use the below script as a bat fileand run on system startup or shutdown via group policy.

Please note, deleting local profiles will also [...]

Flash Player Directory Location

If Flash Player is installed on your machine, it will be located at:
 C:\WINDOWS\system32\Macromed\Flash

The MSI files cannot be found. They need to be in the same location as ClientSetup.exe

Check that the below files are located in the same directory. If not add them in and run command again.
clientsetup.exe
fcsssa.msi
mp_ambits.msi
momagent.msi

July 9, 2010 • Posted in: Software • No Comments