Get Duplicate users in a forest

August 12, 2022 Jeevan Bobba 0

(Get-aduser -filter * -server Domainname:3268 | Group-Object -Property UserprincipalName | ?{$PSItem.Count -gt 1 -and $PSItem.Name -ne “”}).group |export-csv c:\temp\duplic.csv -NoTypeInformation

Share folder permissions

April 15, 2022 Jeevan Bobba 1

#Share Folder Path $FolderPath = dir -Path “\\server1.vmwarenterprise.com\Reports\” -Recurse -Directory -Force$Report = @()Foreach ($Folder in $FolderPath) {$Acl = Get-Acl -Path $Folder.FullNameforeach ($Access in $acl.Access){$Properties = […]

Backup GPOs basing on GPO DisplayName

May 21, 2020 Jeevan Bobba 0

$invalidChars = ‘:\\/’ + [RegEx]::Escape(-join [IO.Path]::InvalidPathChars) $backupDir = ‘C:\temp\backup’ Get-GPO -All -Domain <DOmain Name>| ForEach-Object { $name = $_.DisplayName -replace “[$invalidChars]”, ‘_’ $gpoDir = Join-Path […]

No Image

How To Convert Text Into Audio

January 15, 2017 Jeevan Bobba 0

How To Convert Text Into Audio STEP 1: Open Notepad. Press Win+R and type Notepad and Press Enter. STEP 2: Now, Copy following program and paste it in Notepad Dim message, sapi message […]

No Image

Usefull Links

October 10, 2015 Jeevan Bobba 0

http://blog.feedspot.com/powershell_blogs/ Welcome to vmwareenterprise.com. Deploying vRealize Operations Manager http://bcove.me/j5ltvkxu Initial Setup of the Cluster http://bcove.me/zys7y3a5 Installation with High Availability http://bcove.me/n27a2ecz First Login for a New […]