-
Hyper-V 2012 Access Denied
While trying to connect from a Windows 8 Enterprise client machine to my Windows Server Hyper-V 2012 server via the Hyper-V Manager, I kept getting this error message:“Access denied. Unable to establish communication between Client and Server”. I found a way to fix this. Here is how: From the command prompt of the client open a command prompt and type DCOMCNFG Go to: “Component Services > Computers > My Computer”. Open Properties for “My Computer” and select the COM Security tab. In “Access Permissions” area click the “Edit Limits” button. Select the “Anonymous Logon”-group and make sure the “Remote Access” is set to Allowed. Now your client will connect successfully…
-
Command to delete old log files
I found a good command to delete old logs files which were filling up my server forfiles /P “path to your files /M filename.* /D -1 /C “cmd /c del @path” This will delete filename.* files older than one day.
-
Generating a CSR and Installing a SSL Certificate in Weblogic or Tomcat
This is the only set of instructions on the web which actually worked for me. I think the key was to use this root cert – valicert_class2_root.crt and not use the one which GoDaddy included in the download zip file – gd_bundle.crt Note that these instructions worked fine for Weblogic 8.1 Generating a CSR and Installing an SSL Certificate in Tomcat 4.x/5.x/6.x | Go Daddy Help | Go Daddy Support
-
Reset default File Type Associations in Windows
Here is a life saver. Someone at work changed the .lnk files by mistake in her workstation. She was playing around with Cygwin. Somehow all the shortcuts in the start menu were messed up. This rendered her Windows 7 workstation unusable. We downloaded the .reg file to reset LNK files associations from this page and it worked fine (after a reboot): Default File Type Associations – Restore – Windows 7 Forums
-
Test a Java SSL connection
Here is how to do some serious troubleshooting while configuring a SSL certificate on Weblogic or Tomcat or Apache: Test a Java SSL connection