Recent content by neemobeer


  1. Safing PORTMASTER doesn't start on taskbar, but it start with Windows.

    Based on their documentation you have to enable desktop notifications in the app
  2. Safing PORTMASTER doesn't start on taskbar, but it start with Windows.

    That's a different executable from what is running. Have you checked settings in the app?
  3. Safing PORTMASTER doesn't start on taskbar, but it start with Windows.

    Assuming it has a notification icon you would go into system settings (windows key + i), personalization > taskbar. Expand 'Other system tray icons' and toggle the application to on.
  4. What is the 'Face' char?

    Not all files are meant to be opened in a text editor. It's probably interpreting it as unicode and that looks like some Asian language character
  5. Solved Losing scheduled tasks submitted and functional.

    I would setup procmon to watch C:\Windows\System32\tasks that is where the scheduled tasks exist as xml files. Procmon should give you the source process
  6. Solved Losing scheduled tasks submitted and functional.

    Did you look at the ops log for task scheduler?
  7. Solved Losing scheduled tasks submitted and functional.

    Maybe check your code as well. Do you have any cleanup process? Could be removing tasks
  8. Screen and Sleep - Power Mode

    Desktop or laptop and are power conditions changing (plugged in or not)? You can have different power plans under specific conditions. Also do you have any 3rd party performance tuning utilities? Anything can programmatically alter your power settings.
  9. Solved Losing scheduled tasks submitted and functional.

    You may also want to enable the TaskScheduler log with the following from an elevated powershell prompt. $logName = 'Microsoft-Windows-TaskScheduler/Operational' $log = Get-WinEvent -ListLog $logName $log.IsEnabled = $true $log.SaveChanges() Then schedule some tasks and look at EventViewer >...
  10. Solved Losing scheduled tasks submitted and functional.

    Can you confirm your scheduled task shows up in C:\Windows\System32\Tasks? VB6 is very old and doesn't work well with UAC
  11. What's your favourite productive app/program to install

    I'm a cloud security engineer, but I also support our appsec program which includes testing a lot of web apps.
  12. What's your favourite productive app/program to install

    WSL, vscode, power toys, python, powershell, burp suite, postman, nmap
  13. Does anyone github? Is this a downloadable file here?

    That's just a commit diff. You can go here, click on Code > Download Zip if you don't want to clone from the CLI https://github.com/reeset/data_packs
  14. how to reconnect a device

    That's not really a device per say. Stream proxy is a component of Office 365. The device "Intel High Definition DSP" is probably your audio device, so you may need to reinstall the device driver from the computer manufacturer site.
  15. Help create BAT file for search index

    You could use procmon to determine what to add. Just filtering on PATH contains "Windows Search" and Operation is "RegSetValue" causes over 700 registry changes just toggling between classic and enhanced
Back
Top Bottom