Try our new Certificate Revocation List Check Tool
CRLcheck.exe is a tool developed to verify digital signatures of executable files. It collects files from known paths on your client, checks their signature, and checks Certificate Revocation Lists (CRL) and OCSP download. This helps avoid delays in launching files.
Category published:  Deployment   Click on the Category button to get more articles regarding that product.

Desktop.ini / Windows 7 Problems / My Documents Redirect

Posted by admin on 12.07.2012

  1. If you have a Redirect of he “MY Documents” folder DIRECT into the ROOT of your personal drive
  2. You use Windows 7 32/64BIT you will see the shares with all the same names
  3. If you uses DOS (cmd.exe) you see the correct share
  4. The solutions is to delete the desktop.ini File OR to redirect the “My Documents” Folder into a SUBFOLDER on your Personal network drive

On Error Resume Next

Set WSHShell = WScript.CreateObject(“WScript.Shell”)
Set FSO = CreateObject(“Scripting.FileSystemObject”)

DocsPath = WSHShell.SpecialFolders(“MyDocuments”)

If FSO.FileExists(DocsPath & “\desktop.ini”) Then
FSO.DeleteFile(DocsPath & “\desktop.ini”)
End If


 Category published:  Deployment   Click on the Category button to get more articles regarding that product.