Skip to content

Add/edit Enforce Passcode (Android)

This function is used to add a new Enforce Passcode payload or edit an existing payload in the specified profile.

Public Function AddEditEnforcePasscodeAndroid(ProfileId As Integer, Passcode As String, ChangelogComment As String) As Boolean

Returns a boolean value. True if succeeded, false if not.

VBScript

Set oCMS = CreateObject("CapaInstaller.SDK")
Wscript.echo oCMS.SetDefaultManagementPoint("2")
Dim iProfileId : iProfileId = 184
Dim sPasscode : sPasscode = "918273"
Dim sChangelogComment : sChangelogComment = "Changed passcode on profile with sdk"
Wscript.echo "Changed passcode: " & oCMS.AddEditEnforcePasscodeAndroid(iProfileId, sPasscode, sChangelogComment)