How disappointing
That is all.
Disattenuated, Defenestration, or Disambiguated. You pick.
I may not always be able to speak in coherent sentences or spell my own name, but wow, can I parallel park.
That is all.
Instantiated by Russ at or around 2/18/2011 08:05:00 AM 1 responses (you can leave one!)
I think I'm going to start peppering my blog here with occasional bursts of stuff I am working on, for my own reference, and to help the internets at large. If this means not much to you, I'm sorry. I couldn't find any existing Google citations on this issue, and I thought I could be the first for this rather specific query.
If you are trying to use PowerShell to mount and browse Acronis .TIB files, you may run into a situation where you run the TrueImageCMD command (via PowerShell) to mount the drive, but then your set-location $drive fails. This is apparently because when you start an instance of PowerShell it populates all the available PSDrives, and only allows you to use those. I can't find a command to just refresh that list, but you can explicitly tell PowerShell to start using the backup drive you mounted using TrueImageCMD. And don't forget to remove the drive when you are finished!
Example code:
new-psdrive "RSTmount" -PSProvider filesystem -Root $drive
set-location RSTmount:\
#DO STUFF
set-location c:\
remove-psdrive -name RSTmount
Instantiated by Russ at or around 2/15/2011 11:32:00 AM 1 responses (you can leave one!)