Author name: YongKW

Silent Installation of SQL 2014 with INI file with gMSA Service Account

Group Managed Service Accounts (gMSA) – New in Windows 2012 1. Password for gMSAs are generated and maintained by the Key Distribution Service (KDS). This allows multiple hosts to use the gMSA. Member servers that wish to use the gMSA, simply query the DC for the current password. 2. Password will be changed on every …

Silent Installation of SQL 2014 with INI file with gMSA Service Account Read More »

Exchange 2016 – Powershell for Message Tracking

You will need to use Get-MessageTrackingLog to trace those Email delivered to Distribution Group since the Delivery Report in Exchange EAC seem like cannot be used to archive the goal. You can change the (Get-Date).AddDays(-1) to search for Email for past -X days Get-MessageTrackingLog -ResultSize Unlimited -Start (Get-Date).AddDays(-1) -Recipient "[email protected]" | Format-List Sender, Recipients, MessageSubject, …

Exchange 2016 – Powershell for Message Tracking Read More »

Chocolatey Package Manager in Windows 10

Please refer to the following simple guide on how to use Chocolatey Package Manager in Windows 10 Install Chocolatey in Windows 10 Open PowerShell / PowerShell ISE with Administor Right Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) Verify Choco version installed PS C:\Windows\system32> choco Chocolatey v0.10.11 Install Applications from https://chocolatey.org/ #Install Applications choco install …

Chocolatey Package Manager in Windows 10 Read More »

Exploring VSS with vssadmin

Microsoft’s VSS is Windows’ built-in infrastructure for application backups. A native Windows service,VSS facilitates creating a consistent view of application data during the course of a backup. VSS relies on coordination between **VSS requestors, writers and providers*** for quiescence, or “to make quiet,” a disk volume, so that a backup can be successfully obtained without …

Exploring VSS with vssadmin Read More »

Scroll to Top