Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add RustDesk paths #207

Open
DissectBot opened this issue Jan 10, 2025 · 1 comment
Open

Add RustDesk paths #207

DissectBot opened this issue Jan 10, 2025 · 1 comment
Labels
good first issue Good for newcomers

Comments

@DissectBot
Copy link

Add the following paths for RustDesk:

c:/Users/<user>/AppData/Roaming/Microsoft/Windows/Recent/
c:/Users/<user>/AppData/Roaming/RustDesk/
c:/Users/<user>/AppData/Roaming/RustDesk/log/
c:/Users/<user>/AppData/Roaming/RustDesk/log/check-hwcodec-config/
c:/Users/<user>/AppData/Roaming/RustDesk/log/cm/
c:/Users/<user>/AppData/Roaming/RustDesk/log/install/
c:/Users/<user>/AppData/Roaming/RustDesk/log/tray/
c:/Users/<user>/AppData/Roaming/RustDesk/log/uninstall-amyuni-idd/
c:/Users/<user>/AppData/Roaming/RustDesk/log/uninstall-cert/
c:/Windows/ServiceProfiles/LocalService/AppData/Roaming/RustDesk/
c:/Windows/ServiceProfiles/LocalService/AppData/Roaming/RustDesk/log/
c:/Windows/ServiceProfiles/LocalService/AppData/Roaming/RustDesk/log/check-hwcodec-config/
c:/Windows/ServiceProfiles/LocalService/AppData/Roaming/RustDesk/log/import-config/
c:/Windows/ServiceProfiles/LocalService/AppData/Roaming/RustDesk/log/server/
c:/Windows/ServiceProfiles/LocalService/AppData/Roaming/RustDesk/log/service/
@DissectBot DissectBot added the good first issue Good for newcomers label Jan 10, 2025
@Peter-The-Great
Copy link

    # Rustdesk logs when installed as a service/server
    SERVER_GLOBS = [
        # Windows >= Windows 7
        (
            "sysvol/Windows/ServiceProfiles/LocalService/AppData/Roaming/RustDesk/log/server/*.log",
            "sysvol/Windows/ServiceProfiles/LocalService/AppData/Roaming/RustDesk/log/check-hwcodec-config/*.log",
            "sysvol/Windows/ServiceProfiles/LocalService/AppData/Roaming/RustDesk/log/import-config/*.log",
            "sysvol/Windows/ServiceProfiles/LocalService/AppData/Roaming/RustDesk/log/service/*.log",
        ),
        
        # Linux
        ".local/share/logs/RustDesk/server/*",
        
        # Mac
        "Library/Logs/RustDesk/server/*.log",
    ]

    # User specific Rustdesk logs
    USER_GLOBS = [
        # Windows
        "AppData/Roaming/Rustdesk/log/**/*.log",
        
        # Linux
        ".local/share/logs/RustDesk/server/",
        "/var/log/RustDesk/*.log",
        
        # Mac
        "Library/Logs/RustDesk/RustDesk_rCURRENT.log"
    ]

This might be a good start.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

2 participants