Vignesh Mudliar commented on
Free SquaredUp Community Dashboard Server for PowerShell 1 week, 6 days ago
Thanks for the post. I am definitely trying this one. If it suits our needs it could be a useful tool for us.
Surender Kumar commented on
Free SquaredUp Community Dashboard Server for PowerShell 2 weeks, 1 day ago
Seems interesting. Will check it out.
Brandon Lee wrote a new post,
Free SquaredUp Community Dashboard Server for PowerShell 2 weeks, 1 day ago
SquaredUp Community Dashboard Server is a free solution for creating dashboards based on PowerShell and Web APIs. Learn about recent updates that add even more features.
Michael Pietroforte replied to the topic Disable WinRM Remotely -> removing listeners in
PowerShell Forum 2 weeks, 1 day ago
What does the below command return on the corresponding machine?
dir wsman:localhostlistener
You can find more info about disabling WinRM here.
Gideon Kay started the topic Disable WinRM Remotely -> removing listeners in
PowerShell Forum 2 weeks, 2 days ago
Hi group,
I am trying to disable WinRM remotely and it looks good except the section where I remove the Listeners a message pops up regarding connectivity to the server (PC) was lost. I believe the listeners have been removed by then.
‘Network Connection Interrupted. Attempting to reconnect for up to 4 minutes.’
Any ideas will be greatly appreciated.
Regards, Gideon.Write-host “Remove Listeners”
Invoke-Command -ComputerName ESS-XXX-REP -ScriptBlock {
Remove-Item -Path WSMan:Localhostlistenerlistener* -Recurse
pause
}Detailed post. Thank you!
Surender Kumar commented on
PowerShell as a hacking tool: Prevent abuse of scripts 2 weeks, 3 days ago
Yeah, I read it yesterday that Amadey malware used PowerShell to add exclusions in Windows Defender before a payload is actually downloaded. It is really mind-boggling for IT admins how threat actors are using their favorite sysadmin tools to conduct attacks and exploit.
Sara posted an update in the group
PowerShell 3 weeks ago
Can any one give me some suggestion for the Powershell script coding. I need to read the cSV file and change the record format by removing the ‘,’ to write it in a new txt file.
01MU,20220721,132.47,132.47 — this is how the CSV will look01MU20220721013247000013247000013247000 — This is how i want in the txt file
The record is from CSV is having 1000 records every day. Could you please share the logic or sample code to accomplish the action.
Surender Kumar commented on
Manage WiFi connection in Windows 10 with PowerShell 3 weeks, 2 days ago
Exporting the wifi profile to other computer was really helpful.
No difference, PS still fails it : “…because the volume is
offline.”
Makes no sense to me; package file is in current directory of LOCAL volume.Mohammad Jibrin commented on
Displaying text one page at a time in PowerShell: more, less, head, tail 3 weeks, 3 days ago
How do I enter less command in a power shell so as to make a download.
Thank you.Surender Kumar wrote a new post,
How to change Remote Desktop port (RDP port) using PowerShell 3 weeks, 5 days ago
The Remote Desktop port (RDP port) 3389 in Windows is a popular target for hackers. Thus, it might make sense to change the RDP port. This article describes how to change Remote Desktop with PowerShell.
Arsen Baiatian commented on
Read-Host and the ChoiceDescription class – Prompt for user input in PowerShell 4 weeks ago
Because instead of “[int] 0 ) )” you should have “), 0 ) )”, it works as advertised then.
Baki Dayi posted an update in the group
PowerShell 4 weeks, 1 day ago
This PowerShell script helps to find who deleted email from the mailboxes and exports email deletion audit records to CSV file.Baki Dayi posted an update in the group
PowerShell 4 weeks, 1 day ago
Baki Dayi posted an update in the group
PowerShell 4 weeks, 1 day ago
Learn several ways to convert data YAML to JSON format, including scripting in PowerShell,Baki Dayi posted an update in the group
PowerShell 4 weeks, 1 day ago
This blog provides multiple PowerShell scripts to add/remove users to multiple distribution lists in Microsoft 365 orgnaization.Baki Dayi posted an update in the group
PowerShell 4 weeks, 1 day ago
Currently Im working for a customer on a new security model for their Active Directory, one of the things that we discussed was how to report on changes in certain administrative groups.Michael Pietroforte posted an update in the group
PowerShell 4 weeks, 1 day ago
@rootsector thanks for posting updates on 4sysops! If you want to share links in the PowerShell Group, you have to click the update text field. Below the link symbol a dropdown list will then appear. There you can select “PowerShell.”
Michael commented on
Create Active Directory objects in bulk from a CSV file with PowerShell 4 weeks, 1 day ago
Hello, I am getting this error when trying to run the script.
sync-activedirectory : You cannot call a method on a null-valued expression.
At line:1 char:1
+ sync-activedirectory
+ ~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [Sync-ActiveDirectory], RuntimeException
+ FullyQualifiedErrorId : InvokeMethodOnNull,Sync-ActiveDirectory- Load More
If you just need to remove comma from each record, this one liner can help: