Search Results for https

Windows 11 and WSL 2 DevOps environment

DevOps/SysOps Infrastructure as a Service flow

...download standalone binaries and use CloudMonkey in Windows and Linux: https://github.com/apache/cloudstack-cloudmonkey/releases/download/6.2.0/cmk.windows.x86-64.exe https://github.com/apache/cloudstack-cloudmonkey/releases/download/6.2.0/cmk.linux.x86-64 and this results in: # WSL 2 $ /bin/cmk versionApache CloudStack ? CloudMonkey 6.2.0 # Windows PS C:\Users\janreilink>...

Create strong passwords in Windows

black and white wooden signage

...Gist here: See https://gist.github.com/Digiover/d74a76efedf1e84ddaf947b7284dfe2a. Secure passwords generation with OpenSSL If you have OpenSSL installed and available in Windows you can use OpenSSL to generate pseudo-random strings just as you would...

Software deployment through WDS

How to Deploy Software through WDS, automated as a FirstLogonCommand

...to run the first time a user logs on to the computer. These commands run only once. https://learn.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/microsoft-windows-shell-setup-firstlogoncommands Long story short, just add your deploySoftware.ps1 script as a FirstLogonCommands in your ImageUnattend.xml file. See the image...

Disk Cleanup in Windows Server

Analyze Component Store size with DISM in PowerShell

...after the parade by Pabak Sarkar – https://www.flickr.com/photos/pabak/14410484092 Dism disk cleanup: Deployment Image Servicing and Management (DISM) is a command-line tool that allows you to install, uninstall, configure, and update...

Send email with PowerShell

PowerShell 5.0 logo

...to SMTP servers. While there is no immediate replacement available in PowerShell, we recommend you do not use Send-MailMessage at this time. See https://aka.ms/SendMailMessage for more information. Time for something...

Configure Windows Debugging Symbols in WinDbg

Save the current Workspace in which you configured the Windows Debugging Symbols path for WinDbg

...for understanding debugging and troubleshooting complex issues on Windows? Then check out this GitHub repo by “DebugPrivilege“: https://github.com/DebugPrivilege/InsightEngineering. Each section goes beyond just the theory aspects, emphasizing practical examples using...

List all SPNs used in your Active Directory

The house of names sign is displayed.

.../ credit: # https://social.technet.microsoft.com/wiki/contents/articles/18996.active-directory-powershell-script-to-list-all-spns-used.aspx cls $search = New-Object DirectoryServices.DirectorySearcher([ADSI]"") $search.filter = "(servicePrincipalName=*)" ## You can use this to filter for Organizational Units: ## $results = $search.Findall() | ?{ ## $_.path...