You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want to manually control which version of self-hosted integration runtime, you can disable the setting of auto-update and install it manually. Each version of self-hosted integration runtime expires in one year. The expiring message is shown in ADF portal and self-hosted integration runtime client **90 days** before expiration.
50
50
51
+
When you receive the expire notification, you can use below PowerShell command to find all expired and expiring self-hosted integration runtime in your environment. Then you can upgrade them accordingly.
52
+
53
+
```powershell
54
+
$upperVersion = "<expiring version>" # the format is [major].[minor]. For example: 5.25
55
+
$subscription = "<subscription id>"
56
+
57
+
az login
58
+
az account set --subscription "$subscription"
59
+
60
+
$factories = az datafactory list | ConvertFrom-Json
0 commit comments