Remove Proxmox Subscription Notice (Tested to 8.1)

To remove the “You do not have a valid subscription for this server” popup message while logging in, run the command bellow. You’ll need to SSH to your Proxmox server or use the node console through the PVE web interface. Run the following one line command and then clear your browser cache (depending on the browser you may need to open a new tab or restart the browser): About The function we’re editing is used to check subscription status before executing the originally requested operation and then continuing. This edit will run that operation and continue immediately without running the checks. You can find the command on my GitHub here: https://github.com/jmclaren7/proxmox/blob/main/disable-subscription-notice.sh Manual Steps Here are alternative step by step instructions so you can understand what the above command is doing: 1. Change to working directory 2. Make a backup 3. Edit the file “proxmoxlib.js” 4. Locate the following code (Use ctrl+w in nano and search for “function(orig_cmd)” 5. Add “orig_cmd();” and “return;” just after it 6. Restart the Proxmox web service (also be sure to clear your browser cache, depending on the browser you may need to open a new tab or restart the browser) Additional Notes You have three … Continue reading Remove Proxmox Subscription Notice (Tested to 8.1)