Hodžův blog

Archive for the 'Scriptíky' Category

21 Kvě

Switch TeamViewer to the old interface

From PowerShell, run the following commands as administrator: Set-ItemProperty -Path “HKCU:\Software\Teamviewer” -Name ‘UIVersion’ -Value 2 -Type DWORD –Force Stop-Process -Name „TeamViewer*“ -Force Start-Sleep 5 cd „C:\Program Files\TeamViewer“ .\TeamViewer.exe

02 Čvc

Soft Reset DELL iDRAC using SSH

racadm racreset soft

07 Čvn

HowTo: Upgrade Intel NVMe P4600 SSD firmware in ESXi 7

Download and install Intel® Memory and Storage Tool CLI Solidigm™ Storage Tool CLI (SST) [root@vmware:~] /opt/solidigm/sst/sst load -ssd 0 WARNING! You have selected to update the drives firmware! Proceed with the update? (Y|N): y Checking for firmware update… – Intel SSD DC P4600 Series PHLE729000X14P0KGN – Status : The selected drive contains current firmware as […]

02 Čvn

Proxmox – Could not login to web interface and read only directory /etc/pve

May 29 02:06:55 pve1 pvestatd[1931]: authkey rotation error: cfs-lock ‚authkey‘ error: got lock request timeout May 29 02:06:55 pve1 pvestatd[1931]: status update time (9.120 seconds) May 29 02:06:56 pve1 pve-ha-lrm[2050]: unable to write lrm status file – unable to delete old temp file: Input/output error Fix the cluster filesystem: # systemctl stop pve-cluster # rm […]

25 Kvě

Howto: Remove Microsoft Office from your windows computer with PowerShell

Simple … Isn’t It?? Get-AppxPackage -name “Microsoft.Office.Desktop” | Remove-AppxPackage Get-AppxPackage *officehub* | Remove-AppxPackage

25 Kvě

HowTo: Old Debian & error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory

Problem: #./hpsetup ./hpsetup: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory Quick Fix: # apt-get install lib32stdc++6

12 Kvě

HowTo: Import a PEM certificate and PEM private key into the Windows key store

Create a PKCS12 file containing the certificate and its private key: $ openssl pkcs12 -export -in MyCertficate.crt -inkey MyPrivateKey.pem -out CertificateForImportInWindows.p12 The .p12 generated file is protected by a password and can then be transported without any risk. On a Windows, open this .p12 file and follow the instructions provided.

20 Dub

HowTo: PowerShell Full Command History

Get-Content (Get-PSReadlineOption).HistorySavePath

08 Zář

Windows, PowerShell a nastavení vlastníka adresáře podle názvu složky

Když vám třeba někdo rozbijete oprávnění na domovských složkách uživatelů z Active Directory… Foreach ($Folder in Get-ChildItem „D:\data\home-students“) { $domain=”nazev.domeny” $Username=$Folder.Name $ID=new-object System.Security.Principal.NTAccount($domain, $username) $Path=“D:\data\home-students\$username“ write-host $path $acl=get-acl $path $acl.SetOwner($ID) set-acl -path $path -aclObject $acl }

06 Čvn

Change Hyper-V IP addres in Synology Active Backup for Business

1. Enable SSH 2. Sign as root user 3. Run SQLite3 sqlite3 /volume1/\@ActiveBackup/config.db 4. Determine inventory_id: sqlite> SELECT inventory_id, host_name, host_addr FROM inventory_table; 1|172.26.1.3|172.26.1.3 5. Update IP address and host name (on row with correct inventory_id): sqlite> update inventory_table set host_name = „172.26.1.3“, host_addr = „172.26.1.3“ WHERE inventory_id = ‚1‘; 6. Terminate SQLite3 program: sqlite> […]

Hodžův blog is is proudly powered by Wordpress and the Magellan Theme