Search Results for https

Windows 11 and WSL 2 DevOps environment

DevOps/SysOps Infrastructure as a Service flow

...doesn’t work with WSL, as snap install fails. Luckily you can 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...

Test SMTP authentication and StartTLS

a rusted iron gate with a chain hanging from it

...pop.example.com:110 -starttls pop3 openssl s_client -connect smtp.example.com:25 -starttls smtp Check HTTPS TLS/SSL certificate Use opensslto check and verify HTTPS connections: openssl s_client -tls1_2 -servername host -connect 203.0.113.15:443 Substitute “host” with...

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

...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...

Disk Cleanup in Windows Server

Analyze Component Store size with DISM in PowerShell

...(DISM) clean-up rituals 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,...

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.

...the Service Principal Names – SPNs. # Source / 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:...