├── .gitattributes ├── .gitignore ├── PlasmaPup.png ├── PlasmaPup.sln ├── PlasmaPup ├── ADBrowse.Designer.cs ├── ADBrowse.cs ├── ADBrowse.resx ├── ADPermissionChecker.cs ├── AddAccountExclusion.Designer.cs ├── AddAccountExclusion.cs ├── AddAccountExclusion.resx ├── App.config ├── PlasmaPup.csproj ├── PlasmaPupMain.Designer.cs ├── PlasmaPupMain.cs ├── PlasmaPupMain.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ ├── PermissionInfo.datasource │ │ └── PermissionInfoSummary.datasource │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SqlServerTypes │ ├── Loader.cs │ └── readme.htm ├── SubjectAccessDetailForm.Designer.cs ├── SubjectAccessDetailForm.cs ├── SubjectAccessDetailForm.resx ├── SubjectDetail.rdlc ├── SubjectSummary.rdlc ├── bin │ └── Release │ │ ├── EnvDTE.dll │ │ ├── Microsoft.ReportViewer.Common.dll │ │ ├── Microsoft.ReportViewer.DataVisualization.dll │ │ ├── Microsoft.ReportViewer.Design.dll │ │ ├── Microsoft.ReportViewer.ProcessingObjectModel.dll │ │ ├── Microsoft.ReportViewer.WinForms.dll │ │ ├── Microsoft.SqlServer.Types.dll │ │ ├── PlasmaPup.exe │ │ ├── PlasmaPup.exe.config │ │ ├── SubjectDetail.rdlc │ │ ├── SubjectSummary.rdlc │ │ ├── de │ │ ├── Microsoft.ReportViewer.Common.resources.dll │ │ ├── Microsoft.ReportViewer.DataVisualization.resources.dll │ │ ├── Microsoft.ReportViewer.Design.resources.dll │ │ └── Microsoft.ReportViewer.WinForms.resources.dll │ │ ├── es │ │ ├── Microsoft.ReportViewer.Common.resources.dll │ │ ├── Microsoft.ReportViewer.DataVisualization.resources.dll │ │ ├── Microsoft.ReportViewer.Design.resources.dll │ │ └── Microsoft.ReportViewer.WinForms.resources.dll │ │ ├── fr │ │ ├── Microsoft.ReportViewer.Common.resources.dll │ │ ├── Microsoft.ReportViewer.DataVisualization.resources.dll │ │ ├── Microsoft.ReportViewer.Design.resources.dll │ │ └── Microsoft.ReportViewer.WinForms.resources.dll │ │ ├── it │ │ ├── Microsoft.ReportViewer.Common.resources.dll │ │ ├── Microsoft.ReportViewer.DataVisualization.resources.dll │ │ ├── Microsoft.ReportViewer.Design.resources.dll │ │ └── Microsoft.ReportViewer.WinForms.resources.dll │ │ ├── ja │ │ ├── Microsoft.ReportViewer.Common.resources.dll │ │ ├── Microsoft.ReportViewer.DataVisualization.resources.dll │ │ ├── Microsoft.ReportViewer.Design.resources.dll │ │ └── Microsoft.ReportViewer.WinForms.resources.dll │ │ ├── ko │ │ ├── Microsoft.ReportViewer.Common.resources.dll │ │ ├── Microsoft.ReportViewer.DataVisualization.resources.dll │ │ ├── Microsoft.ReportViewer.Design.resources.dll │ │ └── Microsoft.ReportViewer.WinForms.resources.dll │ │ ├── pt │ │ ├── Microsoft.ReportViewer.Common.resources.dll │ │ ├── Microsoft.ReportViewer.DataVisualization.resources.dll │ │ ├── Microsoft.ReportViewer.Design.resources.dll │ │ └── Microsoft.ReportViewer.WinForms.resources.dll │ │ ├── ru │ │ ├── Microsoft.ReportViewer.Common.resources.dll │ │ ├── Microsoft.ReportViewer.DataVisualization.resources.dll │ │ ├── Microsoft.ReportViewer.Design.resources.dll │ │ └── Microsoft.ReportViewer.WinForms.resources.dll │ │ ├── stdole.dll │ │ ├── zh-CHS │ │ ├── Microsoft.ReportViewer.Common.resources.dll │ │ ├── Microsoft.ReportViewer.DataVisualization.resources.dll │ │ ├── Microsoft.ReportViewer.Design.resources.dll │ │ └── Microsoft.ReportViewer.WinForms.resources.dll │ │ └── zh-CHT │ │ ├── Microsoft.ReportViewer.Common.resources.dll │ │ ├── Microsoft.ReportViewer.DataVisualization.resources.dll │ │ ├── Microsoft.ReportViewer.Design.resources.dll │ │ └── Microsoft.ReportViewer.WinForms.resources.dll ├── packages.config └── pbADTreeWait1.Image.gif ├── PlasmaPup90.png ├── PlasmaPupSetup ├── PlasmaPupSetup.vdproj └── Release │ ├── PlasmaPup.msi │ └── setup.exe ├── README.md ├── icons8-cancel-24.png ├── icons8-remove-user-female2-48.png ├── icons8-spinning-circle.gif └── plasmapupappicon.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/.gitignore -------------------------------------------------------------------------------- /PlasmaPup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup.png -------------------------------------------------------------------------------- /PlasmaPup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup.sln -------------------------------------------------------------------------------- /PlasmaPup/ADBrowse.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/ADBrowse.Designer.cs -------------------------------------------------------------------------------- /PlasmaPup/ADBrowse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/ADBrowse.cs -------------------------------------------------------------------------------- /PlasmaPup/ADBrowse.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/ADBrowse.resx -------------------------------------------------------------------------------- /PlasmaPup/ADPermissionChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/ADPermissionChecker.cs -------------------------------------------------------------------------------- /PlasmaPup/AddAccountExclusion.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/AddAccountExclusion.Designer.cs -------------------------------------------------------------------------------- /PlasmaPup/AddAccountExclusion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/AddAccountExclusion.cs -------------------------------------------------------------------------------- /PlasmaPup/AddAccountExclusion.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/AddAccountExclusion.resx -------------------------------------------------------------------------------- /PlasmaPup/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/App.config -------------------------------------------------------------------------------- /PlasmaPup/PlasmaPup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/PlasmaPup.csproj -------------------------------------------------------------------------------- /PlasmaPup/PlasmaPupMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/PlasmaPupMain.Designer.cs -------------------------------------------------------------------------------- /PlasmaPup/PlasmaPupMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/PlasmaPupMain.cs -------------------------------------------------------------------------------- /PlasmaPup/PlasmaPupMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/PlasmaPupMain.resx -------------------------------------------------------------------------------- /PlasmaPup/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/Program.cs -------------------------------------------------------------------------------- /PlasmaPup/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PlasmaPup/Properties/DataSources/PermissionInfo.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/Properties/DataSources/PermissionInfo.datasource -------------------------------------------------------------------------------- /PlasmaPup/Properties/DataSources/PermissionInfoSummary.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/Properties/DataSources/PermissionInfoSummary.datasource -------------------------------------------------------------------------------- /PlasmaPup/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PlasmaPup/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/Properties/Resources.resx -------------------------------------------------------------------------------- /PlasmaPup/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PlasmaPup/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/Properties/Settings.settings -------------------------------------------------------------------------------- /PlasmaPup/SqlServerTypes/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/SqlServerTypes/Loader.cs -------------------------------------------------------------------------------- /PlasmaPup/SqlServerTypes/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/SqlServerTypes/readme.htm -------------------------------------------------------------------------------- /PlasmaPup/SubjectAccessDetailForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/SubjectAccessDetailForm.Designer.cs -------------------------------------------------------------------------------- /PlasmaPup/SubjectAccessDetailForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/SubjectAccessDetailForm.cs -------------------------------------------------------------------------------- /PlasmaPup/SubjectAccessDetailForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/SubjectAccessDetailForm.resx -------------------------------------------------------------------------------- /PlasmaPup/SubjectDetail.rdlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/SubjectDetail.rdlc -------------------------------------------------------------------------------- /PlasmaPup/SubjectSummary.rdlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/SubjectSummary.rdlc -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/EnvDTE.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/EnvDTE.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/Microsoft.ReportViewer.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/Microsoft.ReportViewer.Common.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/Microsoft.ReportViewer.DataVisualization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/Microsoft.ReportViewer.DataVisualization.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/Microsoft.ReportViewer.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/Microsoft.ReportViewer.Design.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/Microsoft.ReportViewer.ProcessingObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/Microsoft.ReportViewer.ProcessingObjectModel.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/Microsoft.ReportViewer.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/Microsoft.ReportViewer.WinForms.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/Microsoft.SqlServer.Types.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/Microsoft.SqlServer.Types.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/PlasmaPup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/PlasmaPup.exe -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/PlasmaPup.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/PlasmaPup.exe.config -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/SubjectDetail.rdlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/SubjectDetail.rdlc -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/SubjectSummary.rdlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/SubjectSummary.rdlc -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/de/Microsoft.ReportViewer.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/de/Microsoft.ReportViewer.Common.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/de/Microsoft.ReportViewer.DataVisualization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/de/Microsoft.ReportViewer.DataVisualization.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/de/Microsoft.ReportViewer.Design.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/de/Microsoft.ReportViewer.Design.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/de/Microsoft.ReportViewer.WinForms.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/de/Microsoft.ReportViewer.WinForms.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/es/Microsoft.ReportViewer.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/es/Microsoft.ReportViewer.Common.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/es/Microsoft.ReportViewer.DataVisualization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/es/Microsoft.ReportViewer.DataVisualization.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/es/Microsoft.ReportViewer.Design.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/es/Microsoft.ReportViewer.Design.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/es/Microsoft.ReportViewer.WinForms.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/es/Microsoft.ReportViewer.WinForms.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/fr/Microsoft.ReportViewer.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/fr/Microsoft.ReportViewer.Common.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/fr/Microsoft.ReportViewer.DataVisualization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/fr/Microsoft.ReportViewer.DataVisualization.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/fr/Microsoft.ReportViewer.Design.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/fr/Microsoft.ReportViewer.Design.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/fr/Microsoft.ReportViewer.WinForms.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/fr/Microsoft.ReportViewer.WinForms.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/it/Microsoft.ReportViewer.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/it/Microsoft.ReportViewer.Common.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/it/Microsoft.ReportViewer.DataVisualization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/it/Microsoft.ReportViewer.DataVisualization.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/it/Microsoft.ReportViewer.Design.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/it/Microsoft.ReportViewer.Design.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/it/Microsoft.ReportViewer.WinForms.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/it/Microsoft.ReportViewer.WinForms.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/ja/Microsoft.ReportViewer.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/ja/Microsoft.ReportViewer.Common.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/ja/Microsoft.ReportViewer.DataVisualization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/ja/Microsoft.ReportViewer.DataVisualization.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/ja/Microsoft.ReportViewer.Design.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/ja/Microsoft.ReportViewer.Design.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/ja/Microsoft.ReportViewer.WinForms.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/ja/Microsoft.ReportViewer.WinForms.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/ko/Microsoft.ReportViewer.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/ko/Microsoft.ReportViewer.Common.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/ko/Microsoft.ReportViewer.DataVisualization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/ko/Microsoft.ReportViewer.DataVisualization.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/ko/Microsoft.ReportViewer.Design.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/ko/Microsoft.ReportViewer.Design.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/ko/Microsoft.ReportViewer.WinForms.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/ko/Microsoft.ReportViewer.WinForms.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/pt/Microsoft.ReportViewer.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/pt/Microsoft.ReportViewer.Common.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/pt/Microsoft.ReportViewer.DataVisualization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/pt/Microsoft.ReportViewer.DataVisualization.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/pt/Microsoft.ReportViewer.Design.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/pt/Microsoft.ReportViewer.Design.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/pt/Microsoft.ReportViewer.WinForms.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/pt/Microsoft.ReportViewer.WinForms.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/ru/Microsoft.ReportViewer.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/ru/Microsoft.ReportViewer.Common.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/ru/Microsoft.ReportViewer.DataVisualization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/ru/Microsoft.ReportViewer.DataVisualization.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/ru/Microsoft.ReportViewer.Design.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/ru/Microsoft.ReportViewer.Design.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/ru/Microsoft.ReportViewer.WinForms.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/ru/Microsoft.ReportViewer.WinForms.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/stdole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/stdole.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/zh-CHS/Microsoft.ReportViewer.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/zh-CHS/Microsoft.ReportViewer.Common.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/zh-CHS/Microsoft.ReportViewer.DataVisualization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/zh-CHS/Microsoft.ReportViewer.DataVisualization.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/zh-CHS/Microsoft.ReportViewer.Design.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/zh-CHS/Microsoft.ReportViewer.Design.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/zh-CHS/Microsoft.ReportViewer.WinForms.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/zh-CHS/Microsoft.ReportViewer.WinForms.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/zh-CHT/Microsoft.ReportViewer.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/zh-CHT/Microsoft.ReportViewer.Common.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/zh-CHT/Microsoft.ReportViewer.DataVisualization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/zh-CHT/Microsoft.ReportViewer.DataVisualization.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/zh-CHT/Microsoft.ReportViewer.Design.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/zh-CHT/Microsoft.ReportViewer.Design.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/bin/Release/zh-CHT/Microsoft.ReportViewer.WinForms.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/bin/Release/zh-CHT/Microsoft.ReportViewer.WinForms.resources.dll -------------------------------------------------------------------------------- /PlasmaPup/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/packages.config -------------------------------------------------------------------------------- /PlasmaPup/pbADTreeWait1.Image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup/pbADTreeWait1.Image.gif -------------------------------------------------------------------------------- /PlasmaPup90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPup90.png -------------------------------------------------------------------------------- /PlasmaPupSetup/PlasmaPupSetup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPupSetup/PlasmaPupSetup.vdproj -------------------------------------------------------------------------------- /PlasmaPupSetup/Release/PlasmaPup.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPupSetup/Release/PlasmaPup.msi -------------------------------------------------------------------------------- /PlasmaPupSetup/Release/setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/PlasmaPupSetup/Release/setup.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/README.md -------------------------------------------------------------------------------- /icons8-cancel-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/icons8-cancel-24.png -------------------------------------------------------------------------------- /icons8-remove-user-female2-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/icons8-remove-user-female2-48.png -------------------------------------------------------------------------------- /icons8-spinning-circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/icons8-spinning-circle.gif -------------------------------------------------------------------------------- /plasmapupappicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RossGeerlings/PlasmaPup/HEAD/plasmapupappicon.ico --------------------------------------------------------------------------------