SSMS-Schema-Folders
SSMS-Schema-Folders copied to clipboard
Can not "Unlock"
I got the tool in install pretty easily, however could not get it to work. I found that I had to "Unlock" however there was no option in the properties window. what I found to work was the following PoweShell command.
get-childitem "path/to/your/extracted/extension/folder" | unblock-file
The unblock option only appears when viewing the properties for a single file. It does not appear when you have selected multiple files or a folder. This is why I recommend to unblock the zip file before extracting.
Thanks for the PowerShell command. I will leave this issue open for now so that others can see it.
If you hold down the shift key while right clicking on the extracted folder, you will get the option to Open PowerShell window here
. Then you can use the command Get-ChildItem | Unblock-File
.
I was unable to get the unblock option on the zip file before extracting. In fact it never came up as an option on either the zip or the individual dlls. The PS script did the trick though, so either way great extension thanks!!
Hi, from the README I had similar confusion. Perhaps put the steps a bit more clearly, e.g.:
- Right-click the zip file and open Properties
- In the General tab, there's an unchecked checkbox for Unblock, check that one.
- It works!