This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Play2 Server for <site> | |
After=network.target | |
[Service] | |
Type=simple | |
PIDFile=<path>/RUNNING_PID | |
ExecStartPre=[ -e <path>/RUNNING_PID ] && rm <path>/RUNNING_PID | |
ExecStart=<path>/bin/server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--Unlock User | |
DECLARE @return_value int | |
EXEC @return_value = aspnet_Membership_UnlockUser | |
@ApplicationName = '/', | |
@UserName = 'user_name' | |
SELECT 'Return Value' = @return_value | |
GO | |
--Get required details using another known User |