Comprehensive data protection for all workloads
Post Reply
hyvokar
Veteran
Posts: 409
Liked: 29 times
Joined: Nov 21, 2014 10:05 pm
Contact:

Feature request: Copy Support ID to clipboard

Post by hyvokar » 2 people like this post

I'd like to be able to copy&paste Support ID from veeam -> help -> licence information for opening a new case.
Life is made from tiny annoyances ;-) I administer multiple VBR environments, so I dont have all Support IDs written down in .txt or such.
Bed?! Beds for sleepy people! Lets get a kebab and go to a disco!
MS MCSA, MCITP, MCTS, MCP
VMWare VCP5-DCV
Veeam VMCE
Gostev
Chief Product Officer
Posts: 31532
Liked: 6703 times
Joined: Jan 01, 2006 1:01 am
Location: Baar, Switzerland
Contact:

Re: Feature request: Copy Support ID to clipboard

Post by Gostev »

This certainly makes sense :D Thanks!
hyvokar
Veteran
Posts: 409
Liked: 29 times
Joined: Nov 21, 2014 10:05 pm
Contact:

Re: Feature request: Copy Support ID to clipboard

Post by hyvokar »

Still not working :(
Bed?! Beds for sleepy people! Lets get a kebab and go to a disco!
MS MCSA, MCITP, MCTS, MCP
VMWare VCP5-DCV
Veeam VMCE
veremin
Product Manager
Posts: 20284
Liked: 2258 times
Joined: Oct 26, 2012 3:28 pm
Full Name: Vladimir Eremin
Contact:

Re: Feature request: Copy Support ID to clipboard

Post by veremin »

Yep, nothing has changed in this regard due to the low priority of this enhancement. Thanks.
Gostev
Chief Product Officer
Posts: 31532
Liked: 6703 times
Joined: Jan 01, 2006 1:01 am
Location: Baar, Switzerland
Contact:

Re: Feature request: Copy Support ID to clipboard

Post by Gostev »

Plus, we did not have any new releases since OP posted yet anyway ;)
hyvokar
Veteran
Posts: 409
Liked: 29 times
Joined: Nov 21, 2014 10:05 pm
Contact:

Re: Feature request: Copy Support ID to clipboard

Post by hyvokar »

u2! :-) keeping fingers crossed for 9.5 :-)
Bed?! Beds for sleepy people! Lets get a kebab and go to a disco!
MS MCSA, MCITP, MCTS, MCP
VMWare VCP5-DCV
Veeam VMCE
RGijsen
Expert
Posts: 124
Liked: 25 times
Joined: Oct 10, 2014 2:06 pm
Contact:

[MERGED] minor feature request - copy support ID to clipboar

Post by RGijsen »

Hi,
had to raise a ticket this morning and every time I do so I have to manually type over the support ID. I know it's only 6-8 digits, but still it would be nice little timesaver to be able to copy / paste it from the license overview.

Best regards,
Robert
Vitaliy S.
VP, Product Management
Posts: 27114
Liked: 2720 times
Joined: Mar 30, 2009 9:13 am
Full Name: Vitaliy Safarov
Contact:

Re: minor feature request - copy support ID to clipboard

Post by Vitaliy S. »

Hi Robert, thanks for the FR! As a solution for now you can manually type in your support ID in the notes box of the corresponding license key in the Support Portal (License Management section). In this case you can use "copy & paste" functionality when opening a support case.
RGijsen
Expert
Posts: 124
Liked: 25 times
Joined: Oct 10, 2014 2:06 pm
Contact:

Re: Feature request: Copy Support ID to clipboard

Post by RGijsen »

Sorry, while I did search this thread did not come up. Home come this is still not there a year after the request? I fully understand that this is a very low priority thing, but this specific 'feature' also it would take very little time to implement and your to-do list would be shorter. I'm just trying to understand that way of working.
tdewin
Veeam Software
Posts: 1775
Liked: 646 times
Joined: Mar 02, 2012 1:40 pm
Full Name: Timothy Dewin
Contact:

Re: Feature request: Copy Support ID to clipboard

Post by tdewin »

Not sure if the support id is included in your original license because I don't have a commercial license but maybe you can extract it from there? The license is also stored in the registry so you could extract it from there. For example, this will copy the expiration date + product for every product in the license to the clipboard.

To check if it there, just go to the registery shown in line one. It is stored as a binary but if you open it with regedit, you can see the xml. Look for something like SupportId= and modify the "Support expiration date=" to "SupportId="

Store it as a powershell, run it, and stuff is copied to clipboard (you need to run as admin though or somebody who can access the reg)

Code: Select all

$regBinary = (Get-Item 'HKLM:\SOFTWARE\VeeaM\Veeam Backup and Replication\license').GetValue('Lic1')
$veeamLicInfo = [xml]([string]::Join($null, ($regBinary | % { [char][int]$_; })) -replace ".*<[?]xml","<?xml")
$cparr = @()
$veeamLicInfo.Licenses | % { $_.License.InnerText  } | % {
$text = $_.split("`n")
$expdate = ""
$product = ""
$text | ? { $_ -match "Support expiration date=(.*)" } | % {
$expdate = $matches[1]
} 
$text | ? { $_ -match "Product=(.*)" } | % {
$product = $matches[1]
} 
if ($product -ne "" -and $expdate -ne "") {
$cparr += ("{0} : {1}" -f $product,$expdate)
}
}
[string]::Join("`r`n",$cparr) | clip.exe


hyvokar
Veteran
Posts: 409
Liked: 29 times
Joined: Nov 21, 2014 10:05 pm
Contact:

Re: Feature request: Copy Support ID to clipboard

Post by hyvokar »

I dont really like to copy the powershell script to all of my customers' backup servers :-) Some of them doesnt even let you log in remotely :-)
Bed?! Beds for sleepy people! Lets get a kebab and go to a disco!
MS MCSA, MCITP, MCTS, MCP
VMWare VCP5-DCV
Veeam VMCE
veremin
Product Manager
Posts: 20284
Liked: 2258 times
Joined: Oct 26, 2012 3:28 pm
Full Name: Vladimir Eremin
Contact:

Re: Feature request: Copy Support ID to clipboard

Post by veremin » 1 person likes this post

The requested functionality has been added in version 9.5 Update 1:
Support ID copy. By popular demand, we've enabled you to copy your Support ID from the License Information dialog into the Windows Clipboard.
hyvokar
Veteran
Posts: 409
Liked: 29 times
Joined: Nov 21, 2014 10:05 pm
Contact:

Re: Feature request: Copy Support ID to clipboard

Post by hyvokar » 1 person likes this post

Just opened a case with copy paste! :-)
Bed?! Beds for sleepy people! Lets get a kebab and go to a disco!
MS MCSA, MCITP, MCTS, MCP
VMWare VCP5-DCV
Veeam VMCE
Post Reply

Who is online

Users browsing this forum: Bing [Bot], Semrush [Bot] and 133 guests