Tagged Questions
For issues relating to Windows PowerShell, version 1.0.
90
votes
7answers
59k views
Determine What Version of PowerShell is Installed?
How can I determine what version of PowerShell is installed on a computer, and indeed if it is installed at all?
Thanks, MagicAndi
14
votes
4answers
5k views
How to Remove ReadOnly Attribute on File Using PowerShell?
How can I remove the ReadOnly attribute on a file, using a PowerShell (version 1.0) script?
Thanks,
MagicAndi
8
votes
4answers
523 views
Powershell remoting with V1
Do you know of any good remoting solutions using powershell V1 (I know the V2 stuff is awesome, but my organization doesn't like using pre-release software). I don't need anything spectactular, just ...
7
votes
4answers
2k views
Using PowerShell with .NET 3.5 runtime/libraries
Is it possible to run PowerShell 1.0 (or 2.0 CTP) backed by the 3.5 runtime instead of 2.0?
We're building a .NET 3.5 solution, and I'd still like to use PowerShell as our scripting engine for ...
6
votes
5answers
2k views
How can I find the source path of an executing script?
I want to be able to tell what path my executing script was run from.
This will often not be $pwd.
I need to call other scripts that are in a folder structure relative to my script and while I could ...
4
votes
2answers
875 views
How to pause a Powershell script until some external event has occurred?
I am using a Powershell 1 script to kick off a Python program, and I want to then pause the Powershell until the Python has completed its work. (I have complete ownership of the Python file.) What is ...
3
votes
2answers
205 views
Custom Windows Service invokes Powershell to execute commands in exchange 32bit vs 64 bit issue?
I’ve developed a windows service developed in Visual Studio 2010 which performs Exchange 2007 administrative tasks and I’m moving it from a 32-bit development server to a 64-bit production server. ...
3
votes
1answer
444 views
How can I get warning output from a PowerShell cmdlet programatically in v1.0?
I'm using PowerShell v1.0 (It is a requirement that I cannot use 2.0) and am having trouble trying to programatically capture the cmdlet output in the Warning stream.
In Powershell 2.0 it's easy:
...
3
votes
1answer
2k views
Using powershell to edit multiple XML files
How can I get a list of multiple XML files from a specified directory and for each file add an element under the second root node using powershell?
Example:
I want to add ...
3
votes
1answer
3k views
Copy-Item copies directory as well as contents to UNC path
Im trying to take the conents of a folder and copy it to a another unis powershell 1.0. Pretty simple stuff and all works fine using Copy-Item $from $to -recurse if I am copying from a local folder to ...
3
votes
2answers
3k views
Get-Item fails with closed pipeline error
If I have an example function ...
function foo()
{
# get a list of files matched pattern and timestamp
$fs = Get-Item -Path "C:\Temp\*.txt"
| Where-Object {$_.lastwritetime ...
3
votes
1answer
863 views
How can I change the IP address of all sites in IIS6 using powershell 1.0?
Using Powershell 1.0 under Windows Server 2003 with IIS 6.
I have about 200 sites that I would like to change the IP address for (as listed in the website properties on the "website" tab in the "Web ...
3
votes
2answers
3k views
Capturing Powershell output in C# after Pipeline.Invoke throws
I'm running a Powershell test script from a C# application. The script can fail due to a bad cmdlet which causes pipe.Invoke() to throw an exception.
I'm able to capture all the information I need ...
3
votes
3answers
1k views
Can I use PowerShell 1.0 to list processes along with their PIDs and Command Lines?
EDIT by OP: My question presupposed that PowerShell was the best tool for this job. There is a simpler way of achieving my goal. A friend just told me about: iisapp.vbs. It displays exactly the ...
2
votes
2answers
510 views
PowerShell: how to count number of rows in csv file?
How can I count the number of rows in a csv file using powershell? I tried something like
Get-Content -length "C:\Directory\file.csv"
or
(Get-Content).length "C:\Directory\file.csv"
but these ...
2
votes
1answer
113 views
Windows Powershell - how to re-display the statuses of some windows services only when they change?
I have just started with Powershell. I have a bat file which simply kicks off the following PowerShell script, which then re-displays the status of services that I am interested every 5 seconds. It ...
2
votes
1answer
55 views
Can PowerShell 1.0 host a Cmdlet written in .NET 3.5?
When I try to load my Snap-In in PowerShell 1.0 it fails with an error stating that my assembly cannot be loaded due to a dependency on .NET 3.5, which is different to the version of .NET that is ...
2
votes
2answers
347 views
Load-Module equivalient in PowerShell v1
For reasons of script portability, I need to dynamically load snap-ins in a PowerShell script. This is easily accomplished in PowerShell v2 with the Load-Module function. I need to run this particular ...
2
votes
2answers
252 views
Powershell 1.0 - Renaming files fails when script is in a different directory
I am trying to batch rename old log files, but the script only works for me when the script is stored in the same folder as the log files. Here is the code:
cls
$file = gci E:\logs |? {$_.extension ...
2
votes
1answer
103 views
Why did a PowerShell script argument need to be copied to a local variable?
I have a very simple Powershell v1.0 script to kill processes by name:
$target = $args[0]
get-process | where {$_.ProcessName -eq $target} | stop-process -Force
which works. However, when I just ...
2
votes
4answers
638 views
Powershell: get-ChildItem recurse as a parameter
I am relatively new to PowerShell, so I am hoping this is simple, and I just missed it. I am looking to create a function that could toggle the ability to recurse in get-childItem.
As a very basic ...
2
votes
1answer
1k views
Determine Users Accessing a Shared Folder Using PowerShell
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 | System ...
2
votes
1answer
264 views
Building a Snap-in Targeting PowerShell V1 and PowerShell V2
How do I build a PowerShell snap-in to target PowerShell v1 and v2? Given that v1 and v2 can't be installed side by side how can I reference the appropriate assemblies and build against them?
...
2
votes
1answer
1k views
PowerShell 1 is not capturing batch file output with tee
PowerShell can call commandline batch files. PowerShell script output can be recorded with the "tee" command. But the tee command does not record the output of batch files inside a PowerShell script ...
2
votes
2answers
871 views
Ouput redirection/capturing issue with Powershell and Try-Catch and external EXE
First off, either A) I'm not investigating into this hard enough or B) I've found a problem that requires some funky hack. By the way this is posh v1.0.
Here it goes:
A week or so ago I asked a ...
1
vote
1answer
60 views
powershell copy creates extra empty folders
i'm using this simple command to copy over some files and folders that get dropped into a temp folder.
copy c:\update_temp\* c:\target\ -recurse -force
say update_temp has following structure
...
1
vote
1answer
107 views
Is there a wrapper to launch Ant from a Powershell 1.0 script?
I'm running a Powershell 1.0 script on Windows XP. The bin directory in the standard Ant distribution contains a number of scripts for launching Ant from various other environments such as DOS, Perl, ...
1
vote
2answers
365 views
Executing powershell.exe from powershell script (run in ISE but not in script)
I'm new to these awesome Power shell world. I have a problem with script and really apreciate your help.
I have a script "cmd4.ps1" that needs to run another script "Transfer.ps1" that needs to ...
1
vote
2answers
612 views
Exception Handling in Powershell 1.0
I am using the following code to upload a file using PowerShell 1.0. How can I tell if the upload completed successfully or if there was an error? I need to delete the file if the upload was ...
1
vote
2answers
441 views
PowerShell: Retrieve a specific internal XML element
I have an XML document with this structure:
<Fruits>
<Fruit>
<Code>1</Code>
<Name>Apple</Name>
</Fruit>
</Fruits>
What is the ...
1
vote
1answer
111 views
Permission issues across servers in powershell
I wish to have an automated process that basically deploys (copies) a asp.net web site in a CI situation. I have built the web site and I then want to copy the code to the web server. This powershell ...
1
vote
2answers
294 views
Powershell v1 - deleteing all files & folders except in a named folder
I want to delete all the content and the children of a given root folder, however i want to keep some files (the logs), which all reside in a logs folder
What is the elegant way of doing this in ...
1
vote
1answer
123 views
FTP error in powershell
I'm writing a fairly simply script and I'm trying to upload a file to an ftp server. I'm using the following command
ftp -n -s:upload.txt 292.78.51.12 (I've faked the IP)
It works perfectly in ...
1
vote
3answers
2k views
Identify the PID of a Executing Batch File in Powershell
I need to identify the P(rocess) ID of an executing batch file from a PowerShell (v1.0) script. Can anyone suggest a way of doing this?
Thanks, MagicAndi.
1
vote
1answer
182 views
Is it possible to have many pipelines for 1 runspace
This is executing scripts asynchronously from c# and having threads doing the work of loading the script for execution and waiting for output to come out. I may need to have many scripts executing at ...
1
vote
1answer
438 views
PowerShell: Performance of .NET methods calls
Is it possible to call a .NET method from PowerShell with early binding?
I have a pipeline script which calls a single .NET method in process {...}. PowerShell calls this method via reflection, and ...
0
votes
0answers
126 views
Powershell V1.0 - WebClient DownloadFile not working when called from within ColdFusion 9 using CFEXCUTE tag
I am creating a powershell script to do the following:
Package the database on the remote server using SQLCMD and place it into an FTP accessible directory
Connect to the FTP server and download the ...
0
votes
0answers
257 views
Invoke-expression on remote machine with script file
I try to run a script on remote machine with invoke-expression command help. If i run directly in powershell cmd:
enter-pssession pc1
invoke-expression "..."
All is fine, if i double click on ps1 ...
0
votes
1answer
87 views
Find Three files of the Same Name but create with Different Applications
I am looking for a way to find three or more files of the same name but created with another application. Next action is then compare all three files to see if they were create on the same date and ...
0
votes
1answer
48 views
Help with Script for Extracting Specific Data from String
Below is a list of data in a single file. I'd like to run this in Powershell.
LESCAR85 07/31/10 1700678991
/ 70039536 $35.00
SQUADCT8 07/31/10 1698125739
/ ...
0
votes
2answers
1k views
Help me use powershell and bcp to load CSV into SQL Server
I'm using bcp to load a table from a CSV exported from another table by someone else far far away, and have run into some issues. My original two problems: one exported field is an int that needs to ...
0
votes
3answers
1k views
Powershell - Dynamic Function Call
With custom Powershell functions all function output is returned. I'm attempting to remove that limitation/confusion by writing a wrapper function that will return just $true or $false.
However, ...
0
votes
1answer
541 views
Powershell async launching
I have a powershell script which executes from a c# call (ex.. Process.Start(powershell.exe file.ps1);)
notepad.exe filename
this however seems to block script completion, as the event of ...
0
votes
1answer
577 views
Unable to obtain physical memory informatin using powershell
I am having trouble getting physical memory information from windows management objects using powershell. The columns are generated in the excel spreadsheet yet there is no data found in the Winmgmt ...
0
votes
1answer
939 views
PowerShell Script to automate data entry to OpenOffice Calc Spreadsheet
I would like to be able to automate data entry to an Open Office spreadsheet using a PowerShell script, in the same way that Excel can be automated using PowerShell (see this Scripting Guy example). ...
0
votes
1answer
707 views
Powershell.exe running the script in cli, or a wrapper?
I have a third-party application that's extensible by adding exe-files that perform dataconversion etc. I've written an extension in Powershell that does the conversion I want, but I'm unable to get ...
0
votes
1answer
647 views
Powershell not loading profile when running through PSEXEC
I am working with powershell 1.0 using PSEXEC to run scripts remotely (or on the same box in a batch mode). On my machine, the "remoted" powershell session correctly loads my profile.ps1 (from the ...