The GoTo Community is currently experiencing some technical issues affecting new posts and comments. You may need to reload the page you are on before you can post a comment. We are actively working with our service provider and apologize for the frustration.
Forum Discussion
KevinA
16 years agoRetired GoTo Contributor
One2Many Script Repository
Welcome to the LogMeIn Central Script Repository!
What is it? A library of scripts to help you execute automated tasks and manage LogMeIn Pro² computers without having to access them manually. ...
- 8 years ago
https://github.com/knix15/LogMeIn-One2Many-Community-Scripts/
Scripts can be found here as well for better future organization.
skrandalis
14 years agoNew Contributor
I am sure everyone knows how sometimes when you try to access a users computer via logmein it ask for an access code, but other times you have to enter a username and password. This script will add the logmeinremoteuser account which is hidden and allows you to remote in using an access code. Just replace password with the password you desire in the script below. If you forget to change the password in the script the password will be password. Does not work on Server OS's.
(note: REG.exe ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentV.... is all on one line.)
@echo off
Rem Creates Logmein User for access code use
Net user LogMeInRemoteUser password /add goto admin
:admin @echo off net localgroup administrators LogMeInRemoteUser /add
net localgroup users LogMeInRemoteUser /delete
REG.exe ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList" /v LogMeInRemoteUser /t REG_DWORD /d 0 /f
skrandalis
14 years agoNew Contributor
CORRECTION, Word wrap is killing my script.
I am sure everyone knows how sometimes when you try to access a users computer via logmein it ask for an access code, but other times you have to enter a username and password. This script will add the logmeinremoteuser account which is hidden and allows you to remote in using an access code. Just replace password with the password you desire in the script below. If you forget to change the password in the script the password will be password. Does not work on Server OS's.
(note: REG.exe ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentV......_DWORD /d 0 /f is all on one line 'the last line')
@echo off
Rem Creates Logmein User for access code use
Net user LogMeInRemoteUser password /add
goto admin
:admin @echo off net localgroup administrators LogMeInRemoteUser /add
net localgroup users LogMeInRemoteUser /delete
REG.exe ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList" /v LogMeInRemoteUser /t REG_DWORD /d 0 /f