Hi all,
While sitting at a powershell command prompt, is there a way to
execute a script and retain all the variables the script used after
execution is complete?
Thanks.
--
Tim.
Hi all,
While sitting at a powershell command prompt, is there a way to
execute a script and retain all the variables the script used after
execution is complete?
Thanks.
--
Tim.
Tim,
You can make variables global in scope during script execution. So if you
have the following line in your script:
$GLOBAL:someVar = "Hello"
Even if that variable doesn't exist before you run the script, it will after.
--George
"Tim Munro" wrote:
> Hi all,
>
> While sitting at a powershell command prompt, is there a way to
> execute a script and retain all the variables the script used after
> execution is complete?
>
> Thanks.
> --
> Tim.
>
>
>
George, thatnks for your input. I'm looking for something that will let me
see the final state of things after a scruipt runs. To scope everything as
Global for debugging and then having to remove it all when all is working
just doesn't seem like the right way to do things.
--
Tim
"George Davis" <GeorgeDavis@xxxxxx> wrote in message
news:40511FD2-38B1-444B-9127-35D1CA231CF3@xxxxxx
> Tim,
> You can make variables global in scope during script execution. So if you
> have the following line in your script:
>
> $GLOBAL:someVar = "Hello"
>
> Even if that variable doesn't exist before you run the script, it will
> after.
>
> --George
>
>
> "Tim Munro" wrote:
>
>> Hi all,
>>
>> While sitting at a powershell command prompt, is there a way to
>> execute a script and retain all the variables the script used after
>> execution is complete?
>>
>> Thanks.
>> --
>> Tim.
>>
>>
>>
| Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| paaing variables from script to plink cmd | samash40 | VB Script | 3 | 08 Nov 2008 |
| Include another script, keep variables in included script? | pschmidt | PowerShell | 14 | 18 Aug 2008 |
| Need help with PHP Script variables | PainlessTorture | Network & Sharing | 3 | 20 Jul 2008 |
| Pop-up to enter variables to pass to script | Anatoli | PowerShell | 2 | 17 Nov 2007 |
| Passing variables to script | Anatoli | PowerShell | 7 | 07 Aug 2007 |