Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is my script:

Add-Type -Path C:\MyClassLibrary\HidClassLib.dll

$hidDevice = New-Object HidClassLib.CAN_USBPort("test")
$hidDevice.openPort()

When I run this script from the command line in PowerShell ISE it runs properly and adds the HidClassLib.dll to my path.

The $hidDevice variable doesn't persist however, and before I can use it I have to retype those two lines. Is there any way to make it so that the $hidDevice would persist after running the script?

share|improve this question

1 Answer

up vote 2 down vote accepted

You mean that it doesn't persist between sessions? In that case, add it to your PowerShell profile!

Here's a great article on how to do that:

http://msdn.microsoft.com/en-us/library/windows/desktop/bb613488(v=vs.85).aspx

Just add the line(s) to the applicable profile and it will run every time a shell opens.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.