0
votes
2answers
52 views
How to read XML file from web using powershell
When I connect to my HP ILO using the URL, http://ilo-ip/xmldata?item=All it is returning a XML file in below format.
<?xml version="1.0" ?>
- <RIMP>
- <HSI>
…
1
vote
2answers
71 views
How to run a PowerShell script without displaying a window?
How is it possible to run a PowerShell script without displaying a window or any other sign to the user?
In other words, the script should run quietly in the background without any sign to the user.
…
1
vote
3answers
56 views
How to clear $Error in PowerShell?
Is there a way to clear the $Error variable that tracks errors in a PowerShell session?
If so, how do you do it?
I have tried:
$error.clear
In the PowerShell ISE on Windows 7 and the $Error array …
2
votes
3answers
75 views
Renaming files to remove periods in Powershell
I have a list of files like this:
Test.(file1)[text].txt
Test.(file2)[text].txt
Test.(file3)[text].txt
I need to remove any "()","[]" and any ".", replace them spaces without changing the file …
2
votes
3answers
73 views
Get index of current item in Powershell loop?
Given a list of items in powershell, how do I find the index of the current item from within a loop?
For example:
$letters = { 'A', 'B', 'C' }
$letters | % {
# Can I easily get the index of $_ …
1
vote
1answer
50 views
How to replace a pattern in a file with an argument in Powershell
I have a powershell script that is replacing patterns in a file with the argument passed to the script. I grabbed the algorithm from another site and it works great, except for the fact that when I …
1
vote
2answers
41 views
Use bat to start Powershell script
I have a batch file test.bat to start a powershell script:
@pushd "C:\myscripts"
powershell .\test.ps1 arg1 "arg2 with space" arg3
@popd
The script test.ps1 (located at C:\myscripts) is a very …
20
votes
12answers
3k views
PowerShell vs. Unix Shells
I'm debating whether I should learn PowerShell, or just stick with Cygwin/Perl Scripts/Unix Shell scripts, etc.
The benefit of PowerShell would be that the scripts could be more easily used by …
1
vote
2answers
54 views
Test-Path behavior in Powershell
I'm trying to write a script in powershell to batch convert video files.
The way I intend to use it is to go to some folder full of video files and run it. It uses a conversion program that can be …
2
votes
5answers
765 views
How do I change a file’s attribute using Powershell?
I have a Powershell script that copies files from one location to another. Once the copy is complete I want to clear the Archive attribute on the files in the source location that have been copied.
…
0
votes
1answer
158 views
PowerShell Script to Disable/Re-enable a TCP/IP Port
Is there a way to disable and re-enable a known TCP/IP port in PowerShell?
0
votes
1answer
18 views
Determine Users Accessing a Shared Folder Using PowerShell
Hi,
I need to determine the users/sessions accessing a shared folder on a Windows XP (SP2) machine using a PowerShell script (v 1.0). This is the information displayed using Computer Management | …
1
vote
2answers
34 views
Deploy PowerShell Exchange Cmdlets with site but without installing full Management Instrumentation
Is it possible to run web site for managing Exchange Recipients on a web-server, where only PowerShell is installed? I dont want to install full Exchange Management Instrumentation on web-server, I …
3
votes
6answers
318 views
How to do this in PowerShell? Or : what language to use for file and string manipulation?
What language should I use for file and string manipulation?
This might seem objective, but really isn't I think. There's lot to say about this. For example I can see clearly that for most usages …
0
votes
2answers
37 views
Powershell: how to tell Copy-Item to unconditionally copy files
This Powershell script:
Copy-Item $src_dir $dst_dir$agent_folder -recurse
works if the resources are not there. But if the resources are there, it will say:
+ Copy-Item <<<< …
