Home
- Details
- Written by: po3dno
- Category: Power Shell
- Hits: 361
Get replication partner status | |
repadmin /showrepl | Get-ADReplicationPartnerMetadata |
Get Inbound replication queue details | |
repadmin /queue | Get-ADReplicationQueueOperation |
Replicate specific AD objects between domain controllers | |
repadmin /replsingleobj | Sync-ADObject |
Get replication metadata of an AD object | |
repadmin /showobjmeta | Get-ADReplicationAttributeMetadata |
Shows highest committed USN | |
repadmin /showutdvec | Get-ADReplicationUpToDatenessVectorTable |
Displays ISTG details | |
repadmin /istg * | Get-ADReplicationSite –filter * | Select InterSiteTopologyGenerator |
List all the subnets in the forest | |
dsquery subnet | Get-ADReplicationSubnet |
List the AD sites in the domain | |
dsquery site | Get-ADReplicationSite |
Get-ADReplicationPartnerMetadata -Target $env:computername |Select Server,@{n="Partner";e={(Resolve-DnsName $_.PartnerAddress).NameHost}},LastReplicationAttempt,LastReplicationResult, LastReplicationSuccess
- Details
- Written by: po3dno
- Category: MSSQL
- Hits: 367
Introduction
DBA uses services accounts to run the various SQL Services. Usually, we should use a separate service account for an individual server SQL Services.
- You should run SQL services having the least permissions
- You should use a complex password and store it in a secure place
- Its password should never expire
- You should also change the password regularly, depending upon your organization’s security policy
If you maintain a large inventory of SQL Servers, you might think it is a cumbersome task to change and maintain the passwords for these servers. Once you change the service account password using SQL Server Configuration Manager, it also requires the restart of SQL Services. It might be a challenging task as well to get downtime for highly transactional applications.
We can leverage Group Managed Service Accounts (gMSA) in these cases. Let’s explore it in the subsequent section.
- Details
- Written by: po3dno
- Category: Windows
- Hits: 342
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -PropertyType DWord -Name RefsEnableLargeWorkingSetTrim -Value 1
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -PropertyType DWord -Name RefsNumberOfChunksToTrim -Value 32
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -PropertyType DWord -Name RefsEnableInlineTrim -Value 1
fsutil behavior set disableDeleteNotify refs 1
- Details
- Written by: po3dno
- Category: Windows
- Hits: 360
If Windows 11 setup is stuck due to lack of network connection:
- Press Shift + F10 to launch Command Prompt.
- Type in
OOBE\BYPASSNRO
and press Enter. - Your VM should reboot and at the setup screen you should see an option for “I don’t have internet.”
- Once Windows setup is completed, make sure to install the SPICE guest tools for network drivers.
- Details
- Written by: po3dno
- Category: Windows
- Hits: 363
If you get this message trying to install Windows 11, you can bypass it with the following steps:
- Press Shift+F10 to open Command Prompt and type in
regedit.exe
to launch Registry Editor. - Navigate to HKEY_LOCAL_MACHINE\SYSTEM\Setup
- Right click on the Setup key on the left size and choose New -> Key.
- Create a key (Раздел) named
LabConfig
- Select the LabConfig key.
- Create two new values: Choose New -> DWORD (32-bit) and create
BypassTPMCheck
andBypassSecureBootCheck
. Set both values to 1. - Close out of Registry Editor and Command Prompt.
- In setup, press the back button and then Next to continue installation.