-
Krishnamoorthi Gopal wrote a new post,
Windows security event log backup to SQL Server Express with PowerShell 1 year ago
My ADSecurityLogArchivingManager PowerShell module is a custom monitoring data retrieval tool that allows you to export security event logs to SQL Server Express, which Windows cleans from the system after a certain number of days. The tool enables you to create an offline Event Viewer for a specific computer.
-
Krishnamoorthi Gopal wrote a new post, Exploiting the CVE-2021-42278 (sAMAccountName spoofing) and CVE-2021-42287 (deceiving the KDC) Active Directory vulnerabilities 1 year, 1 month ago
After Microsoft released security patches for two Active Directory vulnerabilities with the Tuesday, November 9, 2021 patch, Microsoft urged customers on December 20 to apply the patches immediately to prevent attackers from taking over Windows domains. In addition to patching, organizations can increase their defenses against attacks by executing a couple of actions that will help prevent the unauthorized creation of accounts. Unauthorized accounts could lead to the elevation of privileges to those of a Domain Admin once a regular user account has been compromised. An event like this can simply be regarded as an escalated attack.
-
-
Krishnamoorthi Gopal commented on
Perform Active Directory security assessment using PowerShell 1 year, 2 months ago
Make sure Powershell AD Module is exists from where u running the script
-
Krishnamoorthi Gopal liked the comment of Tomas on Perform Active Directory security assessment using PowerShell. (So far, Tomas has 1 likes for this comment) 1 year, 2 months ago
-
Krishnamoorthi Gopal commented on
Perform Active Directory security assessment using PowerShell 1 year, 2 months ago
Thanks for reminding… Its updated
-
Krishnamoorthi Gopal commented on
Perform Active Directory security assessment using PowerShell 1 year, 2 months ago
get-aduser -filter * -properties * | where {$_.PasswordNotRequired -eq $true}
Try the above one
-
Krishnamoorthi Gopal commented on
Perform Active Directory security assessment using PowerShell 1 year, 2 months ago
Pls remove txt from the INI file format..It is Config.ini.txt currently
-
Krishnamoorthi Gopal commented on
Perform Active Directory security assessment using PowerShell 1 year, 2 months ago
Script and INI file should be there in the same directory. Post the screenshot if you looking for the further help.
You can take INI file from here – https://github.com/gkm-automation/AD-Security-Assessment
-
Krishnamoorthi Gopal liked Free Microsoft eBooks for SysAdmins. (So far, This post has 12 likes) 1 year, 2 months ago
-
Krishnamoorthi Gopal commented on
Perform Active Directory security assessment using PowerShell 1 year, 2 months ago
You have to modify the code when you use Gmail for email notifications. So always try to use Google App password option.
-
Krishnamoorthi Gopal commented on
Perform Active Directory security assessment using PowerShell 1 year, 2 months ago
The script takes all the inputs other than the line that starts with comment “#” char. Use can refer here for more details “https://devblogs.microsoft.com/scripting/use-powershell-to-work-with-any-ini-file/”
-
Krishnamoorthi Gopal commented on
Perform Active Directory security assessment using PowerShell 1 year, 2 months ago
$Attachment = “C:tempSome random file.txt”
$Subject = “Email Subject”
$Body = “Insert body text here”
$SMTPServer = “smtp.gmail.com”
$SMTPPort = “587”
Send-MailMessage -From $From -to $To -Cc $Cc -Subject $Subject `
-Body $Body -SmtpServer $SMTPServer -port $SMTPPort -UseSsl `
-Credential (Get-Credential) -Attachments $AttachmentReuse the above code. Don’t provide your default creentails instead generate google application password. Refer here “https://support.google.com/accounts/answer/185833?hl=en”
-
-
Krishnamoorthi Gopal liked the comment of WR on Perform Active Directory security assessment using PowerShell. (So far, WR has 1 likes for this comment) 1 year, 2 months ago
-
-
Krishnamoorthi Gopal wrote a new post,
Perform Active Directory security assessment using PowerShell 1 year, 2 months ago
My Active Directory security assessment script pulls important security facts from Active Directory and generates nicely viewable reports in HTML format by highlighting the spots that require attention. The script manipulates user data using facts collected with benchmark values.
-
Krishnamoorthi Gopal commented on Remote Desktop can’t connect to the remote computer: Reasons and solutions 2 years, 1 month ago
Seems you are connecting from outside of your network. Check this article:
-
Krishnamoorthi Gopal wrote a new post,
Repadmin vs. PowerShell replication cmdlets 3 years, 5 months ago
When it comes to fixing Active Directory replication issues, the Repadmin tool has been your first choice since the launch of Windows 2003. However, the PowerShell replication cmdlets are now offering more flexibility. In this post, I discuss the advantages and disadvantages of both solutions.
-
Krishnamoorthi Gopal liked comment of Matt D on Remote Desktop can’t connect to the remote computer: Reasons and solutions. (So far, Matt D has 1 likes for this comment.) 3 years, 6 months ago
- Load More