When deploying a new application to IIS 7.5 on Windows Server 2008 R2 (test server). I got the following error: Server Error in ‘/’ Application. ——————————————————————————– Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration …
Author Archives: Maris
VMware Guest OS: The trust relationship between this workstation and the primary domain failed
VMware Guest OS: The trust relationship between this workstation and the primary domain failed. I received this errors two times on a row for two different computers. I am not 100% sure, but from reading the web I came to conclusion that this error is encountered when: SID gets cloned when computer gets cloned using …
How to delete all folders in current directory
How to delete all folders in current directory using command line (cmd.exe) or batch files? How to delete all empty directories in current folder: FOR /D %f IN (*.*) DO RD “%f” How to delete all directories / folders in current directory / folder: FOR /D %f IN (*.*) DO RD “%f” /S /Q If …
Continue reading “How to delete all folders in current directory”