Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

433 total results found

Get Hash of a File

Windows Powershell

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

Windows Powershell

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

Windows Powershell

Find-Module -Name AzureAd | Install-Module 

Inactive Computers

Windows Powershell

$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

Windows Powershell

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

Windows Powershell

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

Windows Powershell

(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

Email Security 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

Email Security DKIM

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

Email Security DKIM

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

Email Security 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

Email Security DMARC

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

Windows Active Directoy

Move-ADDirectoryServerOperationMasterRole -Identity CM-01-HVSRV16 -OperationMasterRole InfrastructureMaster  Move-ADDirectoryServerOperationMasterRole -Identity CM-01-HVSRV16 -OperationMasterRole SchemaMaster  Move-ADDirectoryServerOperationMasterRole -Ident...

Disable Bing Search

Windows Windows OS

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

Veeam

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

Veeam

net use \\%FAILING PC NAME%\ADMIN$ /del /user:accent\veeam_service 

Veeam Commands

Veeam

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

Veeam

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

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

Veeam

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...