Blog

Attempting to use the Invoke-Command PowerShell cmdlet to remotely install an application hangs indefinitely without starting the installation

Problem You’ve enabled PSRemoting on a remote server or desktop and attempt to use the Invoke-Command PowerShell cmdlet to remotely install an application with the following cmdlet: Invoke-Command -computername wkst-122 -ScriptBlock {Start-Process -FilePath ‘C:tempagentVMware-viewagent-x86_64-6.2.1-3284564.exe’ -ArgumentList ‘/S /V”/qn’ -Wait} … but the cmdlet executes and hangs

Read More...

Attempting to generate a new CSR with OpenSSL fails with: “13536:error:0E06D06A:configuration file routines:NCONF_get_string:no conf or environment variable:cryptoconfconf_lib.c:272:”

Problem You’ve downloaded OpenSSL and have began the process of generating a new CSR to submit to a Certificate authority but notice that executing the following command: req -new -newkey rsa:2048 -nodes -keyout mykey.pem -out myreq.pem … generates the following error: C:OpenSSL-Win64bin>openssl.exe OpenSSL> req -new

Read More...