I was doing my dutch course homework today, and i found it a bit tedious to use browser for translation. This…
Grzegorz Kulikowski
-
-
Before you start you need to obtain the Lync SDK package (https://download.microsoft.com/download/0/5/6/056013D5-98F8-4B79-88EF-D221E519C37F/lyncsdk.exe) I had hard time to have it working with…
-
!!! WARNING !!! this is not finished ! DO NOT RUN THIS ON PRODUCTION SYSTEMS !!! UNLESS YOU HAVE TESTED IT…
-
This is only usefull if you get into problems with VC, if everything is ok then powercli cmdlet is more than…
-
There is nothing to explain i guess in this function. Just copies the definitions of custom attributes between 2 virtual center…
-
Ok , exporting values of custom attributes , in other words our custom annotations for vms. When running with specific -Attribute…
-
I had to get some info about host memory dimms layout, so i wrote this one. It is utilizing CIM_PhysicalMemory. Not…
-
$si = get-view serviceinstance $sc= $si.Content $sm = get-view -id $sc.SessionManager $vms=get-vm $i=1 foreach ($v in $vms) { .\vmrc.exe vmrc://clone:$($sm.AcquireCloneTicket())@myVC.internetz.biz/?moid=$($v.ExtensionData.MoRef.value) $i++…
-
for exmaple: $vms = get-view -viewtype virtualmachine $vms | ?{$_.runtime.question} | select name In order to answer assuming there is 1…
-
https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2145686 apply patches.
-
New-Item -Path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\KeyExchangeAlgorithms -Name Diffie-Hellman –Force New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\KeyExchangeAlgorithms\Diffie-Hellman -Value 0x00000200 -PropertyType DWord -Name ‘ClientMinKeyBitLength’
-
Today i had to check some data in CDP, hence i wrote this script. I think it’s well documented, so it…