Advanced Search
Search Results
433 total results found
Get Hash of a File
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/get-filehash?view=powershell-7.1 Get-FileHash -Path "FilePath" | FL To tell it what algorithm to use: -algorithm MD5 Example: Get-FileHash -Path 'C:\ac...
Crazy Mouse
Add-Type -AssemblyName System.Windows.Forms;Add-Type -AssemblyName System.Drawing;for($d=0;;$d+=.05){Start-Sleep -m 25;$u,$c,$v=[System.Windows.Forms.Cursor],[Math],[System.Drawing.Point];$p=$v::new($c::Cos($d)*4,4*$c::Sin($d));$m=$u::Position;$u::Position=$v:...
Modules
Find-Module -Name AzureAd | Install-Module
Inactive Computers
$DaysInactive = 365 $time = (Get-Date).Adddays(-($DaysInactive)) Print on Screen: Get-ADComputer -Filter {LastLogonTimeStamp -lt $time} -ResultPageSize 2000 -resultSetSize $null -Properties Name, OperatingSystem, SamAccountName, DistinguishedNam...
Search Users
Active Users: Get-ADUser -Filter "Enabled -eq 'True'" | Select-Object sAMAccountName, name | export-csv -path c:\Accent\userexport.csv Active Users with TimeStamp: Get-ADUser -Filter "Enabled -eq 'True'" -Properties lastLogon | Select-Object sAM...
Import Users from CSV to Group Name
Import-csv "filename.csv" | %{ add-adgroupmember "groupname" -member $_.samaccountname } From <https://community.spiceworks.com/topic/569606-how-to-import-a-list-of-users-from-a-csv-file-to-ad-group-via-power-shell>
Count Users in AD Group
(Get-ADGroup MFA_Users-Properties*).Member.Count From <https://help.clouduss.com/mfa-knowledge-base/count-how-many-users-are-in-an-ad-group>
SPF
SPF is setup by having a special DNS TXT record that states all the IP that are allowed to send on that domain's behalf (such as local exchange server public IP) When a message goes out it automatically gets an IP address added to the header. The receiving e...
DKIM Short
DKIM short: Setup an encryption key Outbound email get a value added that identifies it Inbound email server uses public key to check encyption and validate Forwarded messages keep DKIM key when situations would have SPF fail
DKIM Setup
DomainKeys Identified Mail (DKIM) is a protocol that contributes to DMARC compliancy and allows a company to take responsibility for sent messages that can be verified by mailbox providers. Essentially, it enables the outbound domain to digitally sign email to...
DMARC
DMARC requires SPF & DKIM to be setup first for most effect DMARC Deployment Checklist 7 December 2015 0 0 If you’re at a large organization looking to deploy DMARC, view the video on dmarcian’s deployment process. It’s worth your...
DMARC to Validate Email in Office 365
Use DMARC to validate email in Office 365 11/07/2019 13 minutes to read Domain-based Message Authentication, Reporting, and Conformance (DMARC) works with Sender Policy Framework (SPF) and DomainK...
Move FSMO Roles
Move-ADDirectoryServerOperationMasterRole -Identity CM-01-HVSRV16 -OperationMasterRole InfrastructureMaster Move-ADDirectoryServerOperationMasterRole -Identity CM-01-HVSRV16 -OperationMasterRole SchemaMaster Move-ADDirectoryServerOperationMasterRole -Ident...
Disable Bing Search
Run Regedit.exe—just hit the Windows key and the R key to launch Run: dialog, type “Regedit,” and hit “OK.” Then hit “Yes” when it asks if you want to make changes. Find HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search Find Bi...
Backup and Replication Setup
Backup and Replication license and ISO are in LiquidFiles. Install Backup and Replication. Apply License. 170 Instance Create Veeam_Service account in local AD with domain admin credentials, set as never to expire for use with Veeam processes. ...
Guest Processing Failure
net use \\%FAILING PC NAME%\ADMIN$ /del /user:accent\veeam_service
Veeam Commands
Run an Active Full Backup via Command Prompt "C:\Program Files\Veeam\Endpoint Backup\Veeam.EndPoint.Manager.exe" /activefull "C:\Program Files\Veeam\Endpoint Backup\Veeam.EndPoint.Manager.exe" /activefull "<ID>" Resolution: Error: The De...
Backup Standards
3-2-1 Backups 3 Copies of data - 2 Different Locations - 1 Offsite 3 - Production, Backup, Cloud Backup 2 - Production Location, Cloud Repository 1 - Cloud Repository Veeam Resources Veeam Support - https://www.veeam.com/support.html...
Veeam Resources
Veeam Support - https://www.veeam.com/support.html Create Individual Tech Account, linked to Accent Main account in order to interact with Veeam Support and raise tickets or issues with the software that cannot be solved locally. Veeam Usage Reportin...
Server Backup Configuration
Select Desired Virtual Server from managed Host. Add to Backup Job. Create New Backup for Each VM - 1 Job per Server Name Backup job according to Type and Destination Select Desired Respository for Backup to Targe...