Hello, Am seeing `Cannot activate filesystem log...
# general
p
Hello, Am seeing
Cannot activate filesystem logger plugin: Could not create file: C:\Program Files\osquery\log\osqueryd.results.log
error when running osqueryd on Windows. Please could someone help?
this is my conf file, have kept it simple for now
Copy code
{
  "options": {
    "logger_path": "C:\\Program Files\\osquery\\log",
    "disable_logging": "false",
    "schedule_splay_percent": "10",
    "logger_plugin": "filesystem",
    "verbose": "true",
    "flagfile": "C:\\Program Files\\osquery\\osquery.flags"
  },
  "schedule": {
    // This is a simple example query that outputs basic system information.
    "system_info": {
      // The exact query to run.
      "query": "SELECT * FROM processes;",
      // The interval in seconds to run this query, not an exact interval.
      "interval": 60
    }
  },
  "decorators": {
    "load": [
      "SELECT uuid AS host_uuid FROM system_info;",
      "SELECT user AS username FROM logged_in_users ORDER BY time DESC LIMIT 1;"
    ]
  }    
}