0
votes
2answers
33 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 …
0
votes
2answers
53 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.
…
2
votes
3answers
68 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 …
1
vote
2answers
48 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 …
0
votes
1answer
16 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
31 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 …
0
votes
2answers
35 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 <<<< …
0
votes
1answer
29 views
Run PowerShell scripts on remote PC
I have installed PS 1.0 on a remote PC(RPC001). I used Windows Sysinternals
tool PSExec.exe to execute the following process on the remote:
PSExec \\RPC001 -u myID -p myPWD PowerShell …
2
votes
3answers
65 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
2answers
80 views
Fast and simple binary concatenate files in Powershell
What's the best way of concatenating binary files using Powershell?
I'd prefer a one-liner that simple to remember and fast to execute.
The best I've come up with is:
gc -Encoding Byte -Path …
2
votes
6answers
268 views
How do I encode a 4-byte string as a single 32-bit integer?
First, a disclaimer. I'm not a CS grad nor a math major, so simplicity is important.
I have a four-character string (e.g. "isoy") that I need to pass as a single 32-bit integer field. Of course at …
0
votes
1answer
28 views
Powershell: Is it possible to set-alias on a piped command?
I would like to set the following alias up in my powershell profile:
set-alias mem-users get-process | ? {($_.PM -gt 10000000) -or ($_.VM -gt 10000000)} | sort -property PM
But when I try this out …
1
vote
1answer
58 views
Replacement for Vern Buerg’s list.com in 64 bit Windows 7
I would like to find a replacement for list.com, specifically the ability to accept piped input. For example:
p4 sync -n | list
which accepts the output of the perforce command and displays the …
1
vote
1answer
48 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 …
0
votes
2answers
51 views
PowerShell STDOUT Formatting Issue
Is there a way to capture STDOUT information from an executable within powershell, without affecting the default behaviour of the STDOUT process? Whenever I attempt to capture output from an …
