-
- Veteran
- Posts: 411
- Liked: 31 times
- Joined: Nov 21, 2014 10:05 pm
- Contact:
Feature request: Copy Support ID to clipboard
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.
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
MS MCSA, MCITP, MCTS, MCP
VMWare VCP5-DCV
Veeam VMCE
-
- Chief Product Officer
- Posts: 31804
- Liked: 7298 times
- Joined: Jan 01, 2006 1:01 am
- Location: Baar, Switzerland
- Contact:
Re: Feature request: Copy Support ID to clipboard
This certainly makes sense Thanks!
-
- Veteran
- Posts: 411
- Liked: 31 times
- Joined: Nov 21, 2014 10:05 pm
- Contact:
Re: Feature request: Copy Support ID to clipboard
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
MS MCSA, MCITP, MCTS, MCP
VMWare VCP5-DCV
Veeam VMCE
-
- Product Manager
- Posts: 20400
- Liked: 2298 times
- Joined: Oct 26, 2012 3:28 pm
- Full Name: Vladimir Eremin
- Contact:
Re: Feature request: Copy Support ID to clipboard
Yep, nothing has changed in this regard due to the low priority of this enhancement. Thanks.
-
- Chief Product Officer
- Posts: 31804
- Liked: 7298 times
- Joined: Jan 01, 2006 1:01 am
- Location: Baar, Switzerland
- Contact:
Re: Feature request: Copy Support ID to clipboard
Plus, we did not have any new releases since OP posted yet anyway
-
- Veteran
- Posts: 411
- Liked: 31 times
- Joined: Nov 21, 2014 10:05 pm
- Contact:
Re: Feature request: Copy Support ID to clipboard
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
MS MCSA, MCITP, MCTS, MCP
VMWare VCP5-DCV
Veeam VMCE
-
- Expert
- Posts: 127
- Liked: 29 times
- Joined: Oct 10, 2014 2:06 pm
- Contact:
[MERGED] minor feature request - copy support ID to clipboar
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
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
-
- VP, Product Management
- Posts: 27371
- Liked: 2799 times
- Joined: Mar 30, 2009 9:13 am
- Full Name: Vitaliy Safarov
- Contact:
Re: minor feature request - copy support ID to clipboard
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.
-
- Expert
- Posts: 127
- Liked: 29 times
- Joined: Oct 10, 2014 2:06 pm
- Contact:
Re: Feature request: Copy Support ID to clipboard
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.
-
- Veeam Software
- Posts: 1818
- Liked: 655 times
- Joined: Mar 02, 2012 1:40 pm
- Full Name: Timothy Dewin
- Contact:
Re: Feature request: Copy Support ID to clipboard
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)
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
-
- Veteran
- Posts: 411
- Liked: 31 times
- Joined: Nov 21, 2014 10:05 pm
- Contact:
Re: Feature request: Copy Support ID to clipboard
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
MS MCSA, MCITP, MCTS, MCP
VMWare VCP5-DCV
Veeam VMCE
-
- Product Manager
- Posts: 20400
- Liked: 2298 times
- Joined: Oct 26, 2012 3:28 pm
- Full Name: Vladimir Eremin
- Contact:
Re: Feature request: Copy Support ID to clipboard
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.
-
- Veteran
- Posts: 411
- Liked: 31 times
- Joined: Nov 21, 2014 10:05 pm
- Contact:
Re: Feature request: Copy Support ID to clipboard
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
MS MCSA, MCITP, MCTS, MCP
VMWare VCP5-DCV
Veeam VMCE
Who is online
Users browsing this forum: AdsBot [Google], Baidu [Spider], Google [Bot], mbrzezinski, t.hirschinger, woifgaung and 169 guests