Moving Firestreamer lincenses

The technical support forum for Firestreamer (the virtual tape library).
Locked
dwntel
Posts: 4
Joined: 17 Dec 2012, 15:08

Post by dwntel »

Hi

I am moving my firestreamer licens from one server to another.
Both servers is going to stay online with firestreamer but only the new one is going to write to tape. The old one is only for restore.

How do i remove the license from the old server?

\ Torstein
jsf
Cristalink Support
Posts: 300
Joined: 29 Aug 2010, 09:03

Post by jsf »

You can use the following PowerShell script to uninstall a Firestreamer license key.

Code: Select all

#
# This PowerShell script uninstalls a Firestreamer license key.
#
#   1. Save this script as c:\temp\RemoveLicense.ps1.
#   2. Open a PowerShell command prompt as an administrator.
#   3. Run the following command to enable the execution of scripts:
#        Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope Process
#   4. Run the script:
#        c:\temp\RemoveLicense.ps1
#

$assembly2 = [System.Reflection.Assembly]::LoadFrom("c:\Program files\Cristalink\FsChanger\FirestreamerInterface.dll")
$firestreamer = New-Object Firestreamer.Driver.Controller
$firestreamer.Connect()
$firestreamer.SetLicenseKey("")
Best regards,
John Smith
Cristalink Support
Locked