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 to find deleted distribution list in O365
When it happen that someone is missing DL and you would like to verify, when this action happend and who did it. This script can helps a lot ! It can return up to 5000 records and 365 days old … Celý příspěvek
Rubriky: Exchange Server / Exchange Online, Powershell
Komentáře nejsou povolené u textu s názvem How to find deleted distribution list in O365
get-adgroupmember : The size limit for this request was exceeded
Although I have worked in big infrastructures, it is not long time ago, I have personally met with the limitation of ADWS service. Because exists good reasons why this limit should not be changed on DC server, command-let get-adgroupmember can … Celý příspěvek
Rubriky: Powershell
Komentáře nejsou povolené u textu s názvem get-adgroupmember : The size limit for this request was exceeded
How to create secure string and how to get back plaintext from secure string
$SecString = Read-Host „Put Password String“ -AsSecureString $GetBackPlainText = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($SecString) $PlainText = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($GetBackPlainText)
Rubriky: Powershell
Komentáře nejsou povolené u textu s názvem How to create secure string and how to get back plaintext from secure string
Novinky v Powershell v 5
Transcript loggining – GPO ( loguje všechno, i příkazy Exchange, AD admin center atd., které běží na pozadí!) GPO cesta k nastavení: Computer Policy: Computer Configuration -> Administrative Templates -> Windows Components -> Windows PowerShell -> Turn on PowerShell Transcription … Celý příspěvek
Rubriky: Powershell
Komentáře nejsou povolené u textu s názvem Novinky v Powershell v 5
Powershell – Regular Expressions „list of characters“
. matches any character except newline \ escape character \w word character [a-zA-Z_0-9] \W non-word character [^a-zA-Z_0-9] \d Digit [0-9] \D non-digit [^0-9] \n new line \r carriage return \t tabulation \s white space \S non-white space ^ … Celý příspěvek
Rubriky: Powershell
Komentáře nejsou povolené u textu s názvem Powershell – Regular Expressions „list of characters“