I have a script that works great. It is quite complex and does numerous "things".. My problem started when I put the entire 1000-line script in a while-loop..
Some/many of my variables are doubled and messed up for each loop..
This is of course because I run the script in the same runspace.. So, what should I do? Delete all my variables with remove-variable at the end of my script? Or is there some kind of magic thing that lets me clear my runspace between each run?
I feel that I've cluttered things up and that I need some kind of scanner that tells me if I have any unneeded funcions/variables.. I am still in the early phases of learning and this script has been with me "all the way", so it is by no means good coding..
So, what would be "best practice" in my situation?
Remove-Variable -Name var1, var2, var3. As a long term solution start analyzing what all your 1000 lines is doing and find things you can break out into re-usable functions. As a best practice you want to strive for modular, reusable code that you can quickly import into other projects rather than a monolithic chunk of code with many interdependencies which limit reusability. – Andy Arismendi Mar 31 '12 at 20:14