
You can find the "no count" property in the "Connections" tab under "Default connection options". Just uncheking the "no count" feature and refreshing your server would make it work. Voila !!!

What’s New in PowerCommands 1.1
Enable/Disable PowerCommands in Options dialog
This feature allows you to select which commands to enable in the Visual Studio IDE. Point to the Tools menu, then click Options. Expand the PowerCommands options, then click Commands. Check the commands you would like to enable.
Format document on save / Remove and Sort Usings on save
The Format document on save option formats the tabs, spaces, and so on of the document being saved. It is equivalent to pointing to the Edit menu, clicking Advanced, and then clicking Format Document.
The Remove and sort usings option removes unused using statements and sorts the remaining using statements in the document being saved.
Note: The Remove and sort usings option is only available for C# documents.
Note: Format document on save and Remove and sort usings both are initially defaulted OFF.
To select either option, point to the Tools menu, then click Options. Expand the PowerCommands options, and then click General.
Note: If you click Save, the option you select applies to the selected document. If you click Save All, the option applies to all open documents.
Clear All Panes
This command clears all output panes. It can be executed from the button on the toolbar of the Output window.
Copy Path
This command copies the full path of the currently selected item to the clipboard. It can be executed by right-clicking one of these nodes in the Solution Explorer:
· The solution node.
· A project node.
· Any project item node.
· Any folder.
Email CodeSnippet
To email the lines of text you select in the code editor, right-click anywhere in the editor and then click Email CodeSnippet.
Note: If no lines are selected, the entire document will be emailed.
Insert Guid Attribute
This command adds a Guid attribute to a selected class. From the code editor, right-click anywhere within the class definition, then click Insert Guid Attribute.
Note: If the class already has a Guid attribute, the Insert Guid Attribute command will not be visible.
Show All Files
This command shows the hidden files in all projects displayed in the Solution Explorer when the solution node is selected. It enhances the Show All Files button, which normally shows only the hidden files in the selected project node.
Undo Close
This command reopens a closed document , returning the cursor to its last position. To reopen the most recently closed document, point to the Edit menu, then click Undo Close. Alternately, you can use the Ctrl+Shift+Z shortcut.
To reopen any other recently closed document, point to the View menu, click Other Windows, and then click Undo Close Window. The Undo Close window appears, typically next to the Output window.
Double-click any document in the list to reopen it.
What’s New in PowerCommands 1.0
Collapse Projects
This command collapses a hierarchy in the solution explorer starting from the root selected node. It can be executed from three different places: solution, solution folders and project nodes respectively.
Copy Class
This command copies a selected class entire content to the clipboard. It can be executed from a single project item or a project item with dependent sub items.
Paste Class
This command pastes a class entire content from the clipboard. It can be executed from a project or folder node.
Copy References
This command copies a reference or set of references to the clipboard. It can be executed from the references node, a single reference node or set of reference nodes.
Paste References
This command pastes a reference or set of references from the clipboard. It can be executed from different places depending on the type of project. For CSharp projects it can be executed from the references node. For Visual Basic and Website projects it can be executed from the project node.
Copy As Project Reference
This command copies a project as a project reference to the clipboard. It can be executed from a project node.
Edit Project File
This command opens the MSBuild project file for a selected project inside Visual Studio. It can be executed from a project node.
Open Containing Folder
This command opens a Windows Explorer window pointing to the physical path of a selected item. It can be executed from a project item node
Open Command Prompt
This command opens a Visual Studio command prompt pointing to the physical path of a selected item. It can be executed from four different places: solution, project, folder and project item nodes respectively.
Unload Projects
This command unloads all projects in a solution. It can be executed from the solution node.
Reload Projects
This command reloads all unloaded projects in a solution. It can be executed from the solution node.
Remove and Sort Usings
This command removes and sort using statements for all classes given a project. It can be executed from a solution node or a single project node.
Note: The Remove and Sort Usings feature is only available for C# projects since the C# editor implements this feature as a command in the C# editor (which this command calls for each .cs file in the project).
Extract Constant
This command creates a constant definition statement for a selected text. It can be executed from the code window over a selected text.
After specifying the constant visibility and identifier (Figure 24) the following constant declaration is created:
Clear Recent File List
This command clears the Visual Studio recent file list.
Clear Recent Project List
This command clears the Visual Studio recent project list.
Transform Templates
This command executes the associated custom tool with text templates items. It can be executed from a DSL project node or a folder node.
Close All
This command closes all documents. It can be executed from a document tab.
Hello guys,
This article of mine explains how to sign a code without the need to buy the digital
signature for Microsoft Trusted Certificate Authorities. Please note that this
would be helpful for test purposes only since it requires you to install the
certificate in all client browser using the application. Eventually, a
certificate from Trusted Root CA like Verisign, Thawte. Etc has to be bought
for insuring that your CAB/ActiveX component is available for use to all
without security issues. It even makes
code signing easier, which needs only signcode.exe utility along with the spc
file and private key provided by the CA.
For the list for Microsoft trusted CA’s , click the link below:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsecure/html/rootcertprog.aspThe article uses Ascertia as the CA to obtain the free digital certificate.
Some of the utilities provided in the process of signing the
code are part of the Microsoft SDK. So we would be having them if we
have any version of .NET installed on our machine. This works
like a charm if the steps are followed correctly. We just need to execute all
the utilities one by one.
This requires the user to register for an account and provide some
information so as to embed it into the certificate.
Please note that the "Name" that you enter will be the name seen on the certificate. When the information
is provided, a prompt will be asked to add the certificate into the
browser's certificate root store. Add the certificate in the "Trusted
Root Certification Authorities" store.
2. Generation of Software Publishing Certificate (spc)
Run certmgr.exe. This
would display the certificate installed in the previous step along with other
certificates. Select the option to export without the private key and in DER
encoded binary. This should produce a certificate file with .cer
extension. Put it in a folder and at a path, which is not cumbersome. E.g.
c:\<foldername>. Put all the utility files in this folder too.
Now convert the certificate file to spc file - Software
Publishing Certificate with the following utility
cert2spc <insert cer file path>
<insert new spc file path>
This is the file, which is provided by the Verisign along
with a private key. We will generate a private key later in this stage.3.
This time export the private key. Make sure "Include all certificates in
the certification if possible" is checked and "Delete the
private key if the export is successful" is unchecked.
This is available from
the following link for Windows Version. http://www.shininglightpro.com/products/Win32OpenSSL.html
Execute the following code
openssl pkcs12 -in <insert pfx
file path> -nocerts -nodes -out <insert new pem file path>
This will create a *.pem file.
The pfx password will be asked.
Transform the *.pem file to a *.pvk file. This pvk
file will be our private key. Along with the spc, it will be used to sign
our CAB file.
pvk
-in <insert pem file path> -topvk -out <insert new pvk file path>
This is what we require. We only need the spc and pvk
files, so we can delete the other data files if we want.
Now we sign the code using the signcode.exe utility with the
help of spc and pvk files.
The following can be
kept in batch file and executed
set
Product=Picis Ftp
set File=PicisActiveX.CAB
set TimeURL=http://timestamp.verisign.com/scripts/timstamp.dll
signcode.exe
-spc <insert spc file> -v <insert pvk file> -n
"%Product%" -t "%TimeURL%" "%File%"
We can verify the signature by opening
the properties of the signed file, and clicking the Digital Signatures tab. If
there is no Digital Signatures tab, then there is something wrong that we
have done in our procedure.
If everything goes right,
then we have our code digitally signed by Ascertia CA and we can go and use our
activeX to install in our IE 6 and IE 7 browsers.
It really proved helpful to me to test my ActiveX Component for IE 7 Browser. Hope it proves useful to you guys too.