Run PoE as a limited user menu

User Tag List

Page 13 of 28 FirstFirst ... 91011121314151617 ... LastLast
Results 181 to 195 of 419
  1. #181
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1415
    Join Date
    Apr 2006
    Posts
    3,942
    Thanks G/R
    285/571
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TehCheat View Post
    You probably can open as many as you'd like as long as you have different users for each 1 or 2. I haven't tested it, though.
    Just tested it, looks like it fails to create the mutex. In order to run more than two copies at a time, you'd probably have to mess with the mutex creation logic.

    Run PoE as a limited user
  2. #182
    PsiiX3's Avatar Member
    Reputation
    1
    Join Date
    Sep 2017
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does this method give 100% ban protection when using PoeHud?

  3. #183
    roska's Avatar Active Member
    Reputation
    19
    Join Date
    Sep 2017
    Posts
    215
    Thanks G/R
    42/18
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by PsiiX3 View Post
    Does this method give 100% ban protection when using PoeHud?
    one word, no.

  4. #184
    martti96's Avatar Member
    Reputation
    2
    Join Date
    Jul 2011
    Posts
    22
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can't get the loot filters working as a limited user. When I run the game normally the loot filters are there.

  5. #185
    dirkbach666's Avatar Active Member
    Reputation
    24
    Join Date
    Aug 2013
    Posts
    57
    Thanks G/R
    38/22
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    You need to put the loot filters in the limited user's folder.. c:\users\limiteduser\documents\ggg\...

  6. #186
    MaxiVad's Avatar Member
    Reputation
    1
    Join Date
    May 2018
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If I run PoEHUD without limited user less than 10 sec, can I get banned?

  7. #187
    MACROS4LIFE's Avatar Active Member
    Reputation
    47
    Join Date
    Dec 2015
    Posts
    459
    Thanks G/R
    58/45
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    poehud no longer exists ( for now ) so I don't know why you guys are so worried about limited user method. lol
    HUD it's like cocaine, once you used, you can't forget.

  8. #188
    Amatus's Avatar Member
    Reputation
    1
    Join Date
    Feb 2016
    Posts
    3
    Thanks G/R
    2/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have the filters in my limited user's folder but I cannot access them when running poe as aa limited user. When on the limited users account I can access the filters under the UI section, but as soon as I swap back to my main account I can no longer see them under the UI section. Anyone know a fix for this?

  9. #189
    Konrad Martulewicz's Avatar Member
    Reputation
    1
    Join Date
    Oct 2014
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Am i an idiot? Whenever i launch the runas shortcut with my details i get Poe Exception: "Unable to open Content.ggpk. You might have another copy of the game already running.". When i launch same shortcut but without "runas", game runs fine.

  10. #190
    thebbandit's Avatar Contributor
    Reputation
    227
    Join Date
    Feb 2010
    Posts
    427
    Thanks G/R
    23/203
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    I was digging around and couldnt find the relevant information that I used to set up my Steam exe as a limited user. I wanted to share this so I can link back to this Information from my Release post.

    Follow the instructions from the main post (Run PoE as a limited user), when It comes to making the shortcut for the game do this instead:

    Create a new Shortcut
    In the target field put:
    Code:
    C:\Windows\System32\runas.exe /user:ReplaceWithLimitedUserName /savecred "C:\Program Files (x86)\Steam\Steam.exe"
    In the Start in field put:
    Code:
    "C:\Program Files (x86)\Steam"
    Go into steam settings and turn off autostart on boot

    Add the shortcut you created to your Startup folder (Open File Explorer and type shell:startup as the location and then press enter)

    Steam will now launch under the user account you replaced the "ReplaceWithLimitedUserName" with


    Update:
    I am no longer using steam because of the rediculous patch times. It is highly recommended to use the stand alone client.

    For information purposes I am updating this post with the new Batchfile I am using:

    Code:
    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=ReplaceWithUserName
    
    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=C:/Program Files (x86)/Grinding Gear Games/Path of Exile/
    
    REM Make sure to change this drive letter if not on C: drive
    CD C:
    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 /C cd \"%exe_path%\" && Start /high %exe_name% %exe_params%"
    
    
    
    REM ---------------
    REM Scripts Section
    REM ---------------
    
    REM Place all scripts in subfolders one directory
    SET scripts_path=C:\Path\To\The\Path of Exile\Scripts
    
    
    REM Name of the script to run
    SET script_1_name=PoE-Wingman.ahk
    REM Which subdirectory of the scripts folder
    SET script_1_subpath=WingmanReloaded
    REM What to look for as an active process in AHK
    SET script_1_searchString=PoE-Wingman.ahk ahk_exe AutoHotkey.exe
    REM Build the Path from supplied values
    SET script_1_path=%scripts_path%\%script_1_subpath%\%script_1_name%
    
    
    REM Script 2
    SET script_2_name=Run_TradeMacro.ahk
    SET script_2_subpath=POE-TradeMacro
    SET script_2_searchString=_TradeMacroMain.ahk ahk_exe AutoHotkey.exe
    REM Build the Path
    SET script_2_path=%scripts_path%\%script_2_subpath%\%script_2_name%
    
    
    REM Script 3
    SET script_3_name=POE Trades Companion.ahk
    SET script_3_subpath=POE-Trades Companion
    SET script_3_searchString=%script_3_name% ahk_exe AutoHotkey.exe
    REM Build the Path
    SET script_3_path=%scripts_path%\%script_3_subpath%\%script_3_name%
    
    
    REM Send script to AutoHotkey to evaluate for hidden window titles
    (
    ECHO #NoTrayIcon
    ECHO SetTitleMatchMode, 2
    ECHO DetectHiddenWindows On
    ECHO If !WinExist^("%script_1_searchString%"^^^)
    ECHO Run %script_1_path%
    ECHO If !WinExist^("%script_2_searchString%"^^^)
    ECHO Run %script_2_path%
    ECHO If !WinExist^("%script_3_searchString%"^^^)
    ECHO Run %script_3_path%
    ECHO ExitApp
    
    )| AutoHotkey.exe *
    
    Last edited by thebbandit; 03-03-2020 at 12:30 AM.

  11. #191
    manda149314's Avatar Member
    Reputation
    1
    Join Date
    Dec 2017
    Posts
    27
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nvm not working
    Last edited by manda149314; 09-16-2019 at 07:22 PM.

  12. #192
    Seminko's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2010
    Posts
    507
    Thanks G/R
    34/89
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For those who have PoE installed on another drive than C, add '/d' to the command like this:
    Code:
    C:\Windows\System32\runas.exe /user:Exile /savecred "cmd /C cd /d \"A:\Path of Exile/\" && PathOfExile_x64.exe"

    @boterang - might be worth updating the first post
    Last edited by Seminko; 11-26-2019 at 02:27 PM. Reason: formatting
    Don't just say thanks, click thanks!

  13. Thanks LOdddRi, wannac, Preaches, OnurTest (4 members gave Thanks to Seminko for this useful post)
  14. #193
    datz's Avatar Active Member
    Reputation
    22
    Join Date
    Aug 2013
    Posts
    531
    Thanks G/R
    166/19
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You guys think this method works with other games too?

  15. #194
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1415
    Join Date
    Apr 2006
    Posts
    3,942
    Thanks G/R
    285/571
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by datz View Post
    You guys think this method works with other games too?
    It was pulled from Diablo 3's methods, so yeah. That said, there are still plenty of ways that whatever game you're thinking of using it on could detect your cheats. If their anti-cheat is doing something GGG's isn't, it may not provide enough protection.

  16. Thanks datz (1 members gave Thanks to Sychotix for this useful post)
  17. #195
    TehCheat's Avatar ★ Elder ★
    Reputation
    2557
    Join Date
    Oct 2013
    Posts
    1,896
    Thanks G/R
    347/2259
    Trade Feedback
    5 (100%)
    Mentioned
    32 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by datz View Post
    You guys think this method works with other games too?
    If the anti-cheat on other games isn't kernel/driver level, then yes.

  18. Thanks datz, Sychotix (2 members gave Thanks to TehCheat for this useful post)
Page 13 of 28 FirstFirst ... 91011121314151617 ... LastLast

Similar Threads

  1. How to run programs as vista user
    By zeulus in forum Community Chat
    Replies: 12
    Last Post: 12-23-2009, 08:24 AM
  2. [Turbo-Zombie] Run fast as Zombie
    By 41p32 in forum World of Warcraft Exploits
    Replies: 6
    Last Post: 10-23-2008, 06:26 PM
  3. [Performance Guide] How to run WoW to the limits without OC'ing
    By Magichick in forum World of Warcraft Guides
    Replies: 18
    Last Post: 03-03-2008, 06:55 AM
  4. Run 100% as much you want
    By heke01 in forum World of Warcraft Model Editing
    Replies: 4
    Last Post: 08-09-2007, 07:01 PM
  5. Get as many limited supply Items as you want
    By Romeboat in forum World of Warcraft Exploits
    Replies: 10
    Last Post: 11-26-2006, 06:05 PM
All times are GMT -5. The time now is 04:18 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search