Run PoE as a limited user menu

User Tag List

Page 25 of 28 FirstFirst ... 2122232425262728 LastLast
Results 361 to 375 of 406
  1. #361
    AkaliSucks's Avatar Member
    Reputation
    1
    Join Date
    Feb 2020
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi the shortcut isnt working anymore i have to manually always shift click to launch as limited user

    Run PoE as a limited user
  2. #362
    Slavort's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tell me how to start POE Overlay now, it doesn’t want to start with the game now.

  3. #363
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1444
    Join Date
    Apr 2006
    Posts
    4,002
    Thanks G/R
    295/588
    Trade Feedback
    1 (100%)
    Mentioned
    10 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Slavort View Post
    Tell me how to start POE Overlay now, it doesn’t want to start with the game now.
    Make sure you are running PoE as the limited user. Your overlay should be started as administrator.

  4. #364
    Slavort's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    Make sure you are running PoE as the limited user. Your overlay should be started as administrator.
    Yes, right. What needs to be done to make POE Overlay run with the game? When the game is running, it does not display an overlay on top of the game, only a separate overlay window is launched. Sorry google translate.

  5. #365
    Rocker866's Avatar Member
    Reputation
    3
    Join Date
    Nov 2011
    Posts
    212
    Thanks G/R
    13/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys im using this limited user trick since several years without any problems until today. I shift + right click and give my 2nd users information in i always get the error that either the username or the pw is wrong. Im using the same user same pw since several years i didnt forget the pw or so its all correct i even added a new user and stuff but still the same. Im so confused what can be the reason?! any ideas?

    It works when i choose the option to start with an microsoft account for some reason.
    Is it safe to use that method with a microsoft account so basically the same or should i not do it?

  6. #366
    HoriMori's Avatar Member Authenticator enabled
    Reputation
    1
    Join Date
    Jul 2022
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have Win 11 and the game is on D: but it does not work.
    Script:
    SETLOCAL
    ECHO OFF
    SET run_as=C:\Windows\System32\runas.exe

    REM Name of the local user account you are having launch the EXE
    SET local_user=USERNAME

    REM Possible EXE names: PathOfExile.exe, PathOfExile_x64.exe, PathOfExileSteam.exe, PathOfExile_x64Steam.exe, PathOfExile_KG.exe, PathOfExile_x64_KG.exe
    SET exe_name=PathOfExile_x64.exe

    REM You can launch the game with additional Parameters
    SET exe_params=--nologo --waitforpreload

    REM Keep in mind because of strange reasons this one must have / instead of \
    SET exe_path=D:/Games/Path of Exiles/

    REM Make sure to change this drive letter if not on C: drive
    CD D:
    TASKLIST /fi "IMAGENAME eq %exe_name%" 2>NUL | FIND /I /N "%exe_name%">NUL
    IF NOT "%ERRORLEVEL%"=="0" START %run_as% /user:%local_user% /savecred "cmd /D cd "%exe_path%" && Start /high %exe_name% %exe_params%"


    After that only CMD console comes up and it says C:\Windows\System32\
    Not more.

  7. #367
    Confucius's Avatar Super Moderator Don't Look Back in Anger

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1418
    Join Date
    Oct 2007
    Posts
    2,808
    Thanks G/R
    302/311
    Trade Feedback
    7 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Here is a link back to the old poe thread because all the posts didn't copy over to poe 2 section: https://www.ownedcore.com/forums/mmo...ited-user.html (Run PoE as a limited user)

    Please keep new posts about poe 2 to this thread though.

  8. #368
    bashbro900's Avatar Member
    Reputation
    1
    Join Date
    Sep 2024
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    C:\Windows\System32\runas.exe /user:USERNAME/savecred "cmd /C cd "C:/Program Files (x86)/Grinding Gear Games/Path of Exile 2/" && PathOfExile.exe"
    I stuck this into a POE2(PathOfExile2) shortcut and changed USERNAME to my standard user and BOOM it worked


    Also here is an alternitive if people like .bat files (got the information from above posts but changed it so it would work for POE2 paths. Please remember to give thanks!


    Code:
    SETLOCAL
    ECHO OFF
    
    REM Set the location of the runas command
    SET run_as=C:\Windows\System32\runas.exe
    
    REM Set the local user account to launch the game
    SET local_user=CHANGEME TO USERNAME WITH LIMITED POWER
    
    REM The executable name for Path of Exile 2
    SET exe_name=PathOfExile.exe
    
    REM Any additional parameters for launching the game (add more if necessary)
    SET exe_params=--nologo
    
    REM Set the correct path to your Path of Exile 2 installation directory
    SET exe_path=C:/Program Files (x86)/Grinding Gear Games/Path of Exile 2/
    
    REM Ensure the correct drive letter is being used (this assumes the game is on the C: drive)
    CD /d C:
    
    REM Check if the game is already running, and if not, start it
    TASKLIST /fi "IMAGENAME eq %exe_name%" 2>NUL | FIND /I /N "%exe_name%">NUL
    IF NOT "%ERRORLEVEL%"=="0" SET run=1
    
    IF "%run%"=="1" START %run_as% /user:%local_user% /savecred "cmd /C cd /D \"%exe_path%\" && Start /high %exe_name% %exe_params%"
    Last edited by bashbro900; 12-18-2024 at 10:31 AM. Reason: removed username

  9. #369
    zxcvbn911's Avatar Member
    Reputation
    2
    Join Date
    Jul 2019
    Posts
    11
    Thanks G/R
    28/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Posting it for someone like me who has a game on other disk than C. For me, it's disk D - change 'D:' to match your disk letter, this is what Target in your shortcut should look like:
    Code:
    C:\Windows\System32\runas.exe /user:YOUR_USERNAME /savecred "cmd /C D: && cd "/Games/Path of Exile 2/" && PathOfExile_x64.exe"
    Last edited by zxcvbn911; 12-18-2024 at 01:07 PM.

  10. #370
    mylodias's Avatar Member
    Reputation
    1
    Join Date
    Jan 2019
    Posts
    4
    Thanks G/R
    31/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have noticeably lower fps when I run poe 2 as a limited user, and I'm scratching my head wondering why

  11. #371
    iPawnz's Avatar Member
    Reputation
    4
    Join Date
    Mar 2017
    Posts
    28
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how do i verify that this worked? should the process in my task manager be showing up as run by my secondary user?

  12. #372
    aczo1's Avatar Member
    Reputation
    1
    Join Date
    Dec 2022
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    having some issues setting up.
    duplicated shortcut to desktop and set target to:

    C:\Windows\System32\runas.exe /user:MY_USER\user /savecred "C:\Program Files (x86)\Grinding Gear Games\Path of Exile 2\PathOfExile.exe"

    after I tried to open it opened cmd prompting for my alt. user's password as expected, I typed in the password and when I hit enter, nothing launches.

    same thing occurs when I try again.

    nvm ^^ my mistake
    Last edited by aczo1; 12-19-2024 at 08:37 AM.

  13. #373
    juju666's Avatar Member
    Reputation
    1
    Join Date
    Dec 2024
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    cmd pops up

    i have the same problem... how did u fix it??

  14. #374
    fantamaz3's Avatar Member
    Reputation
    1
    Join Date
    Jan 2024
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How to fix poe 2 overlay? "no found character" and i can't price check, opening as administrator/restricted user does not help

  15. #375
    Shadezz's Avatar Member
    Reputation
    14
    Join Date
    Dec 2009
    Posts
    69
    Thanks G/R
    3/3
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by juju666 View Post
    i have the same problem... how did u fix it??
    same, the cmd just pops up and then nothing..

Similar Threads

  1. [How-To] Run PoE as a limited user
    By boterang in forum PoE Bots and Programs
    Replies: 442
    Last Post: 5 Days Ago, 03:53 PM
  2. [Release] Run poe as limited, app.
    By Kirasaka in forum PoE Bots and Programs
    Replies: 80
    Last Post: 06-13-2025, 09:48 AM
  3. [Guide] A more detail guide "How to Run Path of exile as a limited user"
    By LeeBee in forum PoE Bots and Programs
    Replies: 1
    Last Post: 08-18-2023, 10:57 AM
  4. Awakedned PoE Trade as limited user?
    By TacoBiter in forum Path of Exile
    Replies: 5
    Last Post: 05-30-2022, 12:26 PM
  5. Replies: 1
    Last Post: 06-27-2019, 12:24 PM
All times are GMT -5. The time now is 05:35 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search