My badges
MCP Login
OneDrive – Public Folder
Sections
Be-Safe
- Analyze suspicious files to detect types of malware… Analyze suspicious files and URLs to detect types of malware including viruses, worms, and trojans. 0
- Check if you have an account that has been compromised in a data breach 0
- Create Free SSL Certificate 0
- Is someone spying on you? 0
- SSL Server Test of Your Web Site 0
Archives
Login
Archiv rubriky: Powershell
How change scope / jak změnit scope pro vyhledávání a práci s objekty(mailbox) v celém AD Forestu (AD, MS Exchange 2010/2013)
V případě členitého AD Forestu se nám při vyhledávání objektů (např. mailboxů) v jiné než v ROOT domain stane, že objekt nebyl nalezen. Můžeme použít Get-Mailbox -IgnoreDefaultScope, ale ne vždy nám to problém vyřeší. Pro změnu scope a odstranění překážek … Celý příspěvek
Rubriky: Active Directory, Exchange Server / Exchange Online, Powershell
Komentáře nejsou povolené u textu s názvem How change scope / jak změnit scope pro vyhledávání a práci s objekty(mailbox) v celém AD Forestu (AD, MS Exchange 2010/2013)
How find out process id of virtual machine through powershell & cmd
Firts step has to be find out number of proccess S2K8R2 get-wmiobject -Namespace root\virtualization -class msvm_computersystem | fl ElementName,proc* S2512 get-wmiobject -Namespace „root\virtualization\v2“ -class msvm_computersystem | fl ElementName,processID
Rubriky: Powershell, Virtualization
Komentáře nejsou povolené u textu s názvem How find out process id of virtual machine through powershell & cmd
Get Sid – Powershell
get-wmiobject win32_useraccount
Rubriky: MIcrosoft Windows (client/server), Powershell
Komentáře nejsou povolené u textu s názvem Get Sid – Powershell
save password to $variable in powershell (create mailbox, user )
$password = Read-Host „password“ -AsSecureString or $password = get-credential
Rubriky: Powershell
Komentáře nejsou povolené u textu s názvem save password to $variable in powershell (create mailbox, user )
how get memberof group for specific user Powershell
get all property Get-Aduser -identity username -properties * get member of group Get-Aduser -identity username -properties memberof | fl sort output to good shape (Get-Aduser -identity username -property memberof).memberof -replace „\,.*“
Rubriky: Active Directory, Powershell
Komentáře nejsou povolené u textu s názvem how get memberof group for specific user Powershell