InstEd Plus good solution for whom are going to replace a file in a .msi.
BTW: free 30 day trial period available
InstEd Plus good solution for whom are going to replace a file in a .msi.
BTW: free 30 day trial period available
Can be usefull for PowerSlim tests. For instance, in the !|Query: PowerShell|…|
Re-Posted. You can find the original here.
You may need to find the largest files for possible clean-up when free space on a drive runs low. One way is to have PowerShell examine all file sizes, sort by file size descending, and then pick the 10 largest ones (the 10 first results):
Dir $home -recurse -ea SilentlyContinue | Sort-Object Length -Descending | Select-Object -first 10 | Select-Object FullName, Length, LastWriteTime
You should note that this may take some time to complete. Also, you will see the ErrorAction setting, which hides error messages that may occur when the command hits sub-folders or files you have no access.
I am pleased to announce the PowerSlim 0.2.
The main feature of this release is Windows Setup which installs all you need to start doing Acceptance Testing with PowerSlim just in couple of minutes.
The Green Demo Suite will start at the end of the setup process. There will be more soon, stay tuned!
We have lanched the PowerSlim project on codeplex.
Q: Why CodePlex? Why not GitHub or LaunchPad?
A: This project is intended to bring the Microsoft Windows PowerShell scripting language to the acceptance testing world. The current implementation is built on top of IronPython2.6. So it looks like the all ways lead us to Microsoft 🙂