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

Is Your Business QuoteWerks Web Ready? Why More Desktop Users Are Making the Move

Aug 15, 2025

Over the past year, we’ve seen a noticeable shift: more and more QuoteWerks Desktop users are exploring the flexibility and productivity gains offered by QuoteWerks Web. Whether it’s a full transition or a hybrid setup using both platforms, the trend is clear: businesses want quoting tools that adapt to their modern workday. ❓ Why the Shift? […]

READ MORE

Case Study: Enhancing Crane Delivery Precision with Hilltops IT’s Innovative Software Solution

Jul 30, 2025

Client: Terranova CranesIndustry: Specialist Crane Hire The Challenge Terranova Cranes faced a recurring challenge: delivering cranes to exact locations on construction sites where traditional addressing systems (like postcodes) lacked the accuracy required. Navigating to broad or imprecise locations often caused delays, confusion, and inefficiencies in high-pressure environments. The Solution Hilltops IT, authors of the ConnectIt […]

READ MORE

ConnectWise Sell vs QuoteWerks: Aspirational Perception

Jul 15, 2025

🚀 From Practical to Aspirational: Why MSPs See ConnectWise Sell as the Next Step Beyond QuoteWerks In writing, reflecting and drawing conclusions from the previous blog post comparing ConnectWise Sell and QuoteWerks, it got me wondering whether ConnectWise could be perceived as an aspirational move. As a QuoteWerks reseller, it’s natural to feel a sense […]

READ MORE