Exemple #1
0
        public TightVNCInstall(ILoggerService logger, INetworkServices networkServices, IFileAndFolderServices fileAndFolderServices, IPsExecServices psExecServices)
            : base(logger, networkServices, fileAndFolderServices)
        {
            ActionName = "TightVNC Install";
            Description = "Installs the version of TightVNC from the components directory. [Requires Credentials]";
            Category = "Windows Management";

            _psExecServices = psExecServices;
        }
Exemple #2
0
        public RunGpUpdate(ILoggerService logger, INetworkServices networkServices, IFileAndFolderServices fileAndFolderServices, IPsExecServices psExecServices) 
            : base(logger, networkServices, fileAndFolderServices)
        {
            ActionName = "Force Group Policy Update";
            Description = "Forces a GPUpdate on the machine(s).";
            Category = "Windows Management";

            _psExecServices = psExecServices;
        }
Exemple #3
0
        public DeleteGpoCache(ILoggerService logger, INetworkServices networkServices, IFileAndFolderServices fileAndFolderServices, IPsExecServices psExecServices)
            : base(logger, networkServices, fileAndFolderServices)
        {
            ActionName  = "Delete GPO Cache";
            Description = "Deletes the GPO cache of the remote computer(s) and forces GPUpdate.";
            Category    = "Windows Management";

            _psExecServices = psExecServices;
        }
Exemple #4
0
        public RunGpUpdate(ILoggerService logger, INetworkServices networkServices, IFileAndFolderServices fileAndFolderServices, IPsExecServices psExecServices)
            : base(logger, networkServices, fileAndFolderServices)
        {
            ActionName  = "Force Group Policy Update";
            Description = "Forces a GPUpdate on the machine(s).";
            Category    = "Windows Management";

            _psExecServices = psExecServices;
        }
Exemple #5
0
        public DeleteGpoCache(ILoggerService logger, INetworkServices networkServices, IFileAndFolderServices fileAndFolderServices, IPsExecServices psExecServices)
            : base(logger, networkServices, fileAndFolderServices)
        {
            ActionName = "Delete GPO Cache";
            Description = "Deletes the GPO cache of the remote computer(s) and forces GPUpdate.";
            Category = "Windows Management";

            _psExecServices = psExecServices;
        }
Exemple #6
0
 public WmiServices(ILoggerService logger, IFileAndFolderServices fileAndFolderServices, IPsExecServices psExecServices)
 {
     _logger = logger;
     _fileAndFolderServices = fileAndFolderServices;
     _psExecServices = psExecServices;
 }
Exemple #7
0
 public WmiServices(ILoggerService logger, IFileAndFolderServices fileAndFolderServices, IPsExecServices psExecServices)
 {
     _logger = logger;
     _fileAndFolderServices = fileAndFolderServices;
     _psExecServices        = psExecServices;
 }