A "Build Workspace" menu command for Windows Explorer | CodeGuru

A “Build Workspace” menu command for Windows Explorer

What does it do? As you may have noticed, this macro implements an action for Project Workspaces besides the default one (Open with MSDEV). The purpose of this macro is to allow you to do a background build of a selected configuration from the selected workspace. A Developer Studio instance is created invisible and starts […]

Written By
CodeGuru Staff
CodeGuru Staff
Jun 21, 1999
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Sample Image

What does it do?

As you may have noticed, this macro implements an action for Project Workspaces besides the default one (Open with MSDEV). The purpose of this macro is to allow you to do a background build of a selected configuration from the selected workspace. A Developer Studio instance is created invisible and starts compiling the workspace, after which it quits.

How to use it?

This code was developed and tested with Visual C++ 6.0 SP3 and WinNT 4.0 SP4. It requires Windows Scripting Host 5.0 available Microsoft at http//www.microsoft.com/msdownload/vbscript/scripting.asp.

There are two flags you can use with the script

Flag Description

-Rebuild[Configuration hint]
Activates the Rebuild All mode, and optionally, hints the script to which configuration to use.
-BuildConfiguration hint
Hints the script to which configuration to use.

The configuration hint is a substring of a project configuration name. For example, if you have the following configurations in your project

  • Win32 Debug;
  • Win32 Debug Unicode;
  • Win32 Release; and
  • Win32 Release Unicode.

and you pass “Release”, the script will build Win32 Release. It selects the shortest name that contains the desired string.

Advertisement

Finally, to install it

Edit the .reg file and replace C\\Program Files\\Microsoft Visual Studio\\Common\\IDE\\build.vbs for the actual path you will be using. In my case, I have put the script file in a shared directory alongside with the .reg so that anyone has access to the latest version of the script. Anyone that wishes to install this feature just has to execute the .reg file.

REGEDIT4

[HKEY_CLASSES_ROOT\dswfile\shell\Build_Workspace]
"EditFlags"=hex01,00,00,00
@="Build Workspace"

[HKEY_CLASSES_ROOT\dswfile\shell\Build_Workspace\command]
@="wscript.exe \\build.vbs \"%1\""

Downloads

Download source – 2 Kb

History

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.