2
votes
3answers
70 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 …
0
votes
2answers
34 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 …
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
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
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 $_ …
2
votes
6answers
269 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 …
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 …
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 …
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 <<<< …
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
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 | …
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 …
0
votes
2answers
71 views
PowerShell Get-Item question
I am new to PS. Here is an example of my function codes:
function foo()
{
# get a list of files matched pattern and timestamp
$fs = Get-Item -Path "C:\Temp\*.txt" | Where-Object …
1
vote
3answers
52 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 …
1
vote
2answers
81 views
Retrieving data using select SQL statement in Powershell
My goal is to assign the value of the results returned to a variable:
$SqlConnection = New-Object System.Data.SqlClient.SqlConnection
$SqlConnection.ConnectionString = …
