Posts in this category are mainly related to Powershell scripting.
https://vc.fqdn.com:7444/sts/STSService?wsdl
Posts in this category are mainly related to Powershell scripting.
https://vc.fqdn.com:7444/sts/STSService?wsdl
I have installed 8.1 vRealize Orchestrator cluster with 3 nodes . When you read the documentation and you will ask yourself…
I was wondering how the clustering works, i read the documentation and it was stated that the token will be resumed…
Hello all, i have tried to deploy vRO 7.6 in cluster mode, since i don’t have much experience with it i…
https://kb.vmware.com/s/article/2136693 After replacing VC VMCA certificate, VC VAMI page is still not using correct certificate due to missing CA chain. +…
I have replaced VMCA certificates in my lab, and because it was < 24 hours after i did that, i could…
I have tried to deploy vRealize Orchestrator 7.6 and 8.0.1 in a 3 node cluster having f5 bigip ltm virtual edition…
If you tried to install fresh vRO 8 and get Bad Gateway , have a look if you are affected by…
Imagine you have a lot of ips in array, but you want to divide them per 255 characters slices. We join…
PS C:\> $myobj = ‘2222’ PS C:\> $myobj.pstypenames System.String System.Object PS C:\> $myobj.pstypenames.add(‘Greg’) PS C:\> $myobj.pstypenames System.String System.Object PS C:\> [psobject]$myobj2=’2222′…
For a user with read-only Get-VMHostHardware fails with Permission to perform this operation was denied Add the Host-Cim-CimInteraction privilege.
i came up with this today
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<span class="pln">add</span><span class="pun">-</span><span class="pln">type </span><span class="pun">@</span><span class="str">" using System.Net; using System.Security.Cryptography.X509Certificates; public class TrustAllCertsPolicy : ICertificatePolicy { public bool CheckValidationResult( ServicePoint srvPoint, X509Certificate certificate, WebRequest request, int certificateProblem) { return true; } } "</span><span class="pun">@</span> <span class="pun">[</span><span class="typ">System</span><span class="pun">.</span><span class="typ">Net</span><span class="pun">.</span><span class="typ">ServicePointManager</span><span class="pun">]::</span><span class="typ">CertificatePolicy</span> <span class="pun">=</span> <span class="typ">New</span><span class="pun">-</span><span class="typ">Object</span> <span class="typ">TrustAllCertsPolicy</span> you can look up the thumbprint to compare which one it is get-childitem Cert:\CurrentUser\My $superadmin = get-childitem Cert:\CurrentUser\My\YOUR_SUPERADMIN_CERT_HASH invoke-webrequest -Uri "https://infralab.local:32768/ejbca/publicweb/webdist/certdist?cmd=lastcert&installtobrowser=&subject=CN%3dgregu.host.com&format=chain&hidemenu=false" -method "Get" -Certificate $superadmin what's left is to generate the cert order via csr. this just just downloading the already made cert. |