Convert your Autodesk licenses to Named users licenses

This page summarizes the projects mentioned and recommended in the original post on /r/Autodesk

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • Posh

  • <# .Synopsis Configure Autodesk products license to named USER license .DESCRIPTION This script will convert Autodesk licenses to the new Autodesk license model "Named Licenses" for all install Autodesk products. .OUTPUTS Text file "LicenseReset.txt" with the tool output. .FUNCTIONALITY This script will convert Autodesk licenses to the new Autodesk license model "Named Licenses" for all install Autodesk products, it will... - Download AdskLicensingSupportTool - Run "AdskLicensingSupportTool.exe" - Create a txt file "LicenseReset.txt" with all tool output. - If the tool ran before and "LicenseReset.txt" exist it will not run again [to force running the tool again just delete the TXT file] .NOTES Written by Mohamed Hassan I take no responsibility for any issues caused by this script. .LINK https://github.com/mohammedha/Posh #> # Check if Elevated $WindowsIdentity = [system.security.principal.windowsidentity]::GetCurrent() $Principal = New-Object System.Security.Principal.WindowsPrincipal($WindowsIdentity) $AdminRole = [System.Security.Principal.WindowsBuiltInRole]::Administrator if ($Principal.IsInRole($AdminRole)) { Write-Host -ForegroundColor Green "Elevated PowerShell session detected. Continuing." } else { Write-Host -ForegroundColor Red "Autodesk License Support Tool must be run in an elevated PowerShell window. Please launch an elevated session and try again." Break } #Variable $ResetFile = "C:\Autodesk\AdskLicensingSupportTool\LicenseReset.txt" $ADSKFolder = "C:\Autodesk\" $SupportToolFolder = "C:\Autodesk\AdskLicensingSupportTool" $SupportTool = "adsklicensingsupporttool-2.0.0.364-win.zip" # Script if (!(Test-Path -path $ResetFile)) { # Create Autodesk if doesn't exist if (!(Test-Path $ADSKFolder)) { Write-Information -MessageData "Creating Autodesk folder..." -Verbose -InformationAction Continue New-Item -ItemType Directory -Name Autodesk -Path "C:" } else { Write-Information "$ADSKFolder Does Exist - OK" -verbose -InformationAction Continue } # Download/Extract ADSK tool Set-Location -Path $ADSKFolder Invoke-WebRequest -Uri https://download.autodesk.com/us/support/files/AdskLicensingSupportTool/adsklicensingsupporttool-2.0.0.364-win.zip -OutFile "adsklicensingsupporttool-2.0.0.364-win.zip" Expand-Archive -Path $SupportTool -Force Move-Item -LiteralPath "C:\Autodesk\adsklicensingsupporttool-2.0.0.364-win\AdskLicensingSupportTool" -Destination $ADSKFolder -Force Set-Location -Path $SupportToolFolder # Converting ADSK Products to Named User licenses cmd /k "AdskLicensingSupportTool.exe -r All:USER >>LicenseReset.txt" exit } else { Write-Information "AdskLicensingSupportTool Already Ran on this machine" -verbose -InformationAction Continue exit }

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • PowerShell: The object-oriented shell you didn't know you needed

    2 projects | news.ycombinator.com | 29 Apr 2024
  • Scripts to build a trimmed-down Windows 11 image

    9 projects | news.ycombinator.com | 25 Apr 2024
  • API using Deno and ElyasiaJS

    1 project | dev.to | 25 Apr 2024
  • Cloud Console Cartographer – framework for condensing groupings of cloud events

    1 project | news.ycombinator.com | 23 Apr 2024
  • Scoop. A command line installer for windows

    1 project | news.ycombinator.com | 22 Apr 2024