FortiNet UseFull information
Some usefull FortiNet information here: Search for text in the config: show | grep -f "search string" Show sessions: dia sys session list diag sys session list | grep –c…
Some usefull FortiNet information here: Search for text in the config: show | grep -f "search string" Show sessions: dia sys session list diag sys session list | grep –c…
Got an error starting SQL Server stating there is not enough memory. This happened after there was a change to increase the SQL Memory size. My first impression was someone…
Go to Appearance -> Customize -> Additional CSS (or equivilant when using certain themes) Add the following code: .post-template-default.single.single-post { background:none; }
Tool for testing Teams and Skype network traffic, including jitter, bandwidth, packet loss. Start Powershell as administrator Install-Module -Name NetworkTestingCompanionStart GUI with commando Invoke-NetworkTestingClient Missing tool in GUI?Download it from…
Modern Authentication / OAuth Using Exchange Online and Outlook not working with of presenting Modern Authentication? Check if OAuth is enabled: Connect-ExchangeOnline # check of moderne authenticatie is enabled Get-OrganizationConfig…
Connect powershell to Office365. Install-Module MSOnline (one-time only) Connect-msolservice Start-ADSyncSyncCycle -PolicyType Delta Remove user from Office365 if not possible from the GUI. Remove-MsolUser -UserPrincipalName <upn> -RemoveFromRecycleBin
Manual reset sudo syswrapper.sh restore-default Manual set inform set-inform http://ip-of-controller:8080/inform Manual FW update Copy the download URL from the Ubiquiti website and open SSH session to device: upgrade <URL to…
With OS Version from powershell List of all AD Server computers: Get-ADComputer -Filter 'operatingsystem -like "*server*" -and enabled -eq "true"' ` -Properties Name,Operatingsystem,OperatingSystemVersion,IPv4Address | Sort-Object -Property Operatingsystem | Select-Object -Property…
To clean up old user and computer accounts. Import-Module ActiveDirectory $DaysInactive = 90 $time = (Get-Date).Adddays(-($DaysInactive)) Get-ADComputer -Filter {LastLogonTimeStamp -lt $time} -Properties Name, OperatingSystem, SamAccountName, DistinguishedName | Export-CSV “C:\TEMP\StaleComputers.CSV” –NoTypeInformation…
Nice to have when migrating Exchange: List of all users and UPN. get-aduser -filter * | select name,SamAccountName,givenname,surname,userprincipalname | export-csv c:\temp\userlist.csv List of all SMTP Proxy Addresses Import-Module ActiveDirectory "DN;proxyAddress"…