Copying the QuoteWerks QuoteValet URL to the Windows clipboard

The script below provides a way to quickly and easily copy the QuoteValet document URL for the current open document in QuoteWerks to the Windows clipboard. This can then be pasted into an email or other document to send to your customer.

To implement the script, we suggest copy/pasting the below code into a text file and saving the file as “GetQVURL.vbs” in the “Applets” folder of the QuoteWerks directory on your PC or server. (If the “Applets” folder does not exist, then create it.) You can then create a custom menu option using the features in the QuoteWerks Tools menu | Customize Menus screen. Your new menu option should look something like the image below with Command text “&SYS_InstallPath\Applets\GetQVURL.vbs”:

QuoteWerks Get QuoteValet URL menu option

Dim objQWApp 'As Object
Dim strURL 'As String

Dim objShell 'As Object
Dim objExec 'As Object
Dim objIn 'As Object

Set objQWApp = GetObject(, "QuoteWerks.Application")
strURL = objQWApp.GetMacro("&DH_&QuoteValetCustomerFacingURL")
'strURL = strURL & "&internal=1" 'appending this parameter to the URL also will mean it does not trigger a QuoteValet Activity Log entry

Set objShell = CreateObject("WScript.Shell")
Set objExec = objShell.Exec("clip")
Set objIn = objExec.stdIn

objIn.WriteLine strURL
objIn.Close

MsgBox "The QuoteValet Customer Facing URL has been copied to the clipboard", 64, "QuoteWerks Add-On from Hilltops IT" '0 = OK Only, 64 = Information, 0 = Application Modal

Related Stories

See all

Introducing the ConnectIt QuoteWerks Reporting Portal: Enterprise Insights, Turn‑Key Setup

May 11, 2026

A new way for QuoteWerks users to unlock live and historical reporting with a free 30‑day Enterprise trial. If you rely on QuoteWerks data to run your business, reporting shouldn’t be hard. Yet for many QuoteWerks users, meaningful reporting still means: At Hilltops IT, we work with QuoteWerks every day and one thing is consistent: […]

READ MORE

Announcing the BETA Launch of the ConnectIt Software Web Portal for QuoteWerks Reporting

Apr 26, 2026

We’re excited to announce the BETA release of the ConnectIt Software Web Portal for QuoteWerks Reporting – a new, web‑based reporting solution designed to give QuoteWerks users secure, flexible access to their reporting data from anywhere. This BETA release marks a major step in our ongoing effort to extend and modernise QuoteWerks reporting, while respecting […]

READ MORE

How Smart Software is Powering Small Manufacturers: Trends and Tools for 2025

Oct 10, 2025

In today’s fast-moving manufacturing world, it’s not just the machines on the shop floor that are getting smarter – it’s the software behind the scenes too. For managers in micro, small, and medium-sized manufacturing businesses, staying competitive means more than just making great products. It means running a tight ship behind the scenes: quoting quickly, […]

READ MORE