├── .github ├── ISSUE_TEMPLATE │ ├── 1-automation-kit-bug.yml │ ├── 2-automation-kit-feature.yml │ ├── 3-automation-kit-question.yml │ ├── 4-automation-kit-kudos.yml │ └── config.yml └── workflows │ └── SyncIssueWithAzDo.yml ├── .gitignore ├── AutomationCoEMain ├── SolutionPackage │ ├── .gitignore │ ├── AutomationCoEMain.cdsproj │ └── src │ │ ├── AppModuleSiteMaps │ │ └── autocoe_AutomationCenter │ │ │ ├── AppModuleSiteMap.xml │ │ │ └── AppModuleSiteMap_managed.xml │ │ ├── AppModules │ │ └── autocoe_AutomationCenter │ │ │ ├── AppModule.xml │ │ │ └── AppModule_managed.xml │ │ ├── CanvasApps │ │ ├── autocoe_auditlogriskmatrixcustompage_ba6c0.meta.xml │ │ ├── autocoe_auditlogriskmatrixcustompage_ba6c0_BackgroundImageUri │ │ ├── autocoe_auditlogriskmatrixcustompage_ba6c0_DocumentUri.msapp │ │ ├── autocoe_autocoetemplatelibrary_2e31f.meta.xml │ │ ├── autocoe_autocoetemplatelibrary_2e31f_BackgroundImageUri │ │ ├── autocoe_autocoetemplatelibrary_2e31f_DocumentUri.msapp │ │ ├── autocoe_automationcenterdefaultcommandlibrary19036_BackgroundImageUri │ │ ├── autocoe_automationcenterdefaultcommandlibrary86168_DocumentUri.msapp │ │ ├── autocoe_automationcenterdefaultcommandlibrary_960e9.meta.xml │ │ ├── autocoe_automationcoeconsole_e5b8b.meta.xml │ │ ├── autocoe_automationcoeconsole_e5b8b_BackgroundImageUri │ │ ├── autocoe_automationcoeconsole_e5b8b_DocumentUri.msapp │ │ ├── autocoe_automationproject_f233b.meta.xml │ │ ├── autocoe_automationproject_f233b_BackgroundImageUri │ │ ├── autocoe_automationproject_f233b_DocumentUri.msapp │ │ ├── autocoe_dlpimpactanalysisforpad_c54d9.meta.xml │ │ ├── autocoe_dlpimpactanalysisforpad_c54d9_BackgroundImageUri │ │ └── autocoe_dlpimpactanalysisforpad_c54d9_DocumentUri.msapp │ │ ├── Entities │ │ ├── autocoe_AuditLog │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {8e7b8219-0d4c-4ac7-8d99-8a2ba39840ec}.xml │ │ │ │ │ └── {8e7b8219-0d4c-4ac7-8d99-8a2ba39840ec}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {6b917e61-00c1-45d4-86d5-6aa3a3f5ab4f}.xml │ │ │ │ │ └── {6b917e61-00c1-45d4-86d5-6aa3a3f5ab4f}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {eda58d31-c02a-4c9f-9677-4876d2d93d1e}.xml │ │ │ │ │ └── {eda58d31-c02a-4c9f-9677-4876d2d93d1e}_managed.xml │ │ │ ├── Formulas │ │ │ │ └── autocoe_auditlog-autocoe_riskindex.xaml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {6f9d3d4f-1c15-4153-8c75-c27af4328480}.xml │ │ │ │ ├── {82558b8a-ad30-97f2-9892-8b196a5de520}.xml │ │ │ │ ├── {8bdcfd93-f6b4-46eb-a402-9e1f4ef39a50}.xml │ │ │ │ ├── {95642def-47dc-4007-a4ae-3822ca9ba40f}.xml │ │ │ │ ├── {9d20d30f-cf5d-44f1-85cf-9a05e67c6cb2}.xml │ │ │ │ ├── {c10a622d-0780-40c7-bebc-f289aafa4169}.xml │ │ │ │ ├── {dcb5a9e8-a5b9-4b1a-ba1d-bea94060e8cc}.xml │ │ │ │ └── {e6ed422a-d037-ec11-8c65-0022486db98d}.xml │ │ ├── autocoe_AutomationCorporateGoals │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {fe31f2ac-aebc-4c95-ab65-a5965eaef268}.xml │ │ │ │ │ └── {fe31f2ac-aebc-4c95-ab65-a5965eaef268}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {b5fd61b7-4640-4799-afaa-892e91d4e54f}.xml │ │ │ │ │ └── {b5fd61b7-4640-4799-afaa-892e91d4e54f}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {2906a1d5-91c9-494c-ba58-8096b7710cda}.xml │ │ │ │ │ └── {2906a1d5-91c9-494c-ba58-8096b7710cda}_managed.xml │ │ │ ├── Formulas │ │ │ │ └── autocoe_automationcorporategoals-autocoe_actualtotalsavings.xaml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {4e0ee2ed-6874-483f-9f98-ad3de06182dd}.xml │ │ │ │ ├── {5af9cb7d-badd-4061-8919-c91812475deb}.xml │ │ │ │ ├── {70ae9ddf-e592-4b07-90a6-918ec52ac793}.xml │ │ │ │ ├── {793f37a8-097d-436e-be91-48ebf770b8b6}.xml │ │ │ │ ├── {b1373b42-9f53-4cd6-b725-1a79f3addd3d}.xml │ │ │ │ ├── {b443493c-7047-ec11-8c60-000d3a5cb2d9}.xml │ │ │ │ ├── {d0184484-2287-4ab7-3129-6d338beb798e}.xml │ │ │ │ └── {d6a27658-5713-4fa6-b53f-b90c03110dfa}.xml │ │ ├── autocoe_AutomationProject │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {ff099690-538d-4351-a920-8df07eec09db}.xml │ │ │ │ │ └── {ff099690-538d-4351-a920-8df07eec09db}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {de4ccb7d-dd9b-4fcd-8bfb-8520b884b571}.xml │ │ │ │ │ └── {de4ccb7d-dd9b-4fcd-8bfb-8520b884b571}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {a2abef78-84e3-41c4-82af-553a7fb7e924}.xml │ │ │ │ │ └── {a2abef78-84e3-41c4-82af-553a7fb7e924}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {3588b9df-561d-4f6f-b79c-7122d1e8c096}.xml │ │ │ │ ├── {428fb119-f36d-4b7b-adec-dbbd1a0d51c6}.xml │ │ │ │ ├── {9cb10222-4937-40c3-8f3a-e94769cf13ba}.xml │ │ │ │ ├── {ef15e236-3c91-eb11-b1ac-002248831e32}.xml │ │ │ │ ├── {f840a2ef-da6f-5c6a-0187-7dbdb6ce50dc}.xml │ │ │ │ ├── {fa082959-de4f-43c8-92c8-af883f8ed4fb}.xml │ │ │ │ ├── {fdc8c4f4-8119-46d8-b021-9eb5bee9e8db}.xml │ │ │ │ └── {fe071253-c9f4-4b61-8c69-e664ea572b58}.xml │ │ ├── autocoe_AutomationProjectStakeholder │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {7ac3e474-8d8f-49b3-9ff2-0d35bf0eb1d5}.xml │ │ │ │ │ └── {7ac3e474-8d8f-49b3-9ff2-0d35bf0eb1d5}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {19e5e54a-92ae-4b36-89c9-f37cc04fc3bb}.xml │ │ │ │ │ └── {19e5e54a-92ae-4b36-89c9-f37cc04fc3bb}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {c36018de-be05-4549-a3b4-4aaa7cc3a02e}.xml │ │ │ │ │ └── {c36018de-be05-4549-a3b4-4aaa7cc3a02e}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {005fca1b-b36b-0d3c-50a9-679f46f38374}.xml │ │ │ │ ├── {13327fd4-1049-ec11-8c60-000d3a5cb898}.xml │ │ │ │ ├── {27cd68bb-639a-44a9-8ce3-b76c4bbe640c}.xml │ │ │ │ ├── {470407b2-278d-47a4-9db8-6ca20a342344}.xml │ │ │ │ ├── {7fbac592-f9ca-4ddd-be9f-f9ed2c0ff808}.xml │ │ │ │ ├── {8b740a14-cc10-4a94-97ec-a3daa35b3415}.xml │ │ │ │ ├── {ceedfff3-df9e-446f-bee2-b40730c8880c}.xml │ │ │ │ └── {cf3fe47d-264c-43c9-bac2-2f9ff7d05c50}.xml │ │ ├── autocoe_AverageAutomationStepsScore │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {5ea401ec-3e4c-4317-92a7-c3c8338991ec}.xml │ │ │ │ │ └── {5ea401ec-3e4c-4317-92a7-c3c8338991ec}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {6cfb4f91-e78b-4bb8-be30-d0a20fb421d2}.xml │ │ │ │ │ └── {6cfb4f91-e78b-4bb8-be30-d0a20fb421d2}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {c4fba296-e340-428d-95a4-8f7e4df89153}.xml │ │ │ │ │ └── {c4fba296-e340-428d-95a4-8f7e4df89153}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {35906c44-2f98-49d7-b7d4-bb0c33d45422}.xml │ │ │ │ ├── {45edc5f1-75da-4197-8e8f-5f7d7fa7b7e3}.xml │ │ │ │ ├── {5cbbc522-860d-420c-ba5d-4f0f09efc127}.xml │ │ │ │ ├── {7e8f48ab-dac4-a4a0-7549-65ee69c4fd5f}.xml │ │ │ │ ├── {9e763612-930c-46dd-8da0-a97910cc69a7}.xml │ │ │ │ ├── {bffd0434-2f3a-ec11-8c60-000d3a09f28e}.xml │ │ │ │ ├── {d885e266-c714-4cbc-8a32-74ecbea4926c}.xml │ │ │ │ └── {e3c413bf-014e-4f12-84be-a270dc2ab89f}.xml │ │ ├── autocoe_BaseConfiguration │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {5f7a6cda-2ea5-430b-841b-a8e7352c194d}.xml │ │ │ │ │ └── {5f7a6cda-2ea5-430b-841b-a8e7352c194d}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {c60baede-74c4-4527-ae01-074b2a312285}.xml │ │ │ │ │ └── {c60baede-74c4-4527-ae01-074b2a312285}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {d1052dab-287f-4a02-933c-1c0212d6d763}.xml │ │ │ │ │ └── {d1052dab-287f-4a02-933c-1c0212d6d763}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {257950a4-5504-493f-8bd5-b427b6b1cf02}.xml │ │ │ │ ├── {50034534-10a7-4be7-9ec8-d4b01e6177c7}.xml │ │ │ │ ├── {67aa4eb5-d84d-ec11-8f8e-00224806dba5}.xml │ │ │ │ ├── {76164b3b-4395-4868-90bf-c1d683ec0074}.xml │ │ │ │ ├── {b11f7de8-d88a-6a2c-27ec-260f5349ced8}.xml │ │ │ │ ├── {b5101772-0563-4046-bf1e-8262c2b79f66}.xml │ │ │ │ ├── {c8379a0c-2258-402a-afc6-993ec6cf5fd2}.xml │ │ │ │ └── {f7b7cdc4-68c5-4e31-bfae-6b0034768892}.xml │ │ ├── autocoe_ConsoleConfig │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {34cc1475-8a91-4c43-a4ea-19664a568b49}.xml │ │ │ │ │ └── {34cc1475-8a91-4c43-a4ea-19664a568b49}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {df491b48-1e21-40ae-bb2f-7338994ca62f}.xml │ │ │ │ │ └── {df491b48-1e21-40ae-bb2f-7338994ca62f}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {29a8ae88-0ffb-45ea-ad77-31b235b8f05c}.xml │ │ │ │ │ └── {29a8ae88-0ffb-45ea-ad77-31b235b8f05c}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {2df796b2-ffd8-4d10-ac28-173a81838560}.xml │ │ │ │ ├── {35d656e5-f69a-49a3-8d17-dd6594c74e66}.xml │ │ │ │ ├── {3f8b7d27-5313-308f-cd6e-a2ab080863e5}.xml │ │ │ │ ├── {5aa01123-190b-4212-802f-3244f7061675}.xml │ │ │ │ ├── {794c30c1-0a15-4b83-8e64-912498ec7f6f}.xml │ │ │ │ ├── {9a833868-2da4-4aa0-b056-5527337af727}.xml │ │ │ │ ├── {a4cfdaf4-1942-ec11-8c60-000d3a5ba211}.xml │ │ │ │ └── {bb1bb0c7-a437-401c-939c-35cd7c979b45}.xml │ │ ├── autocoe_ConsoleGallery │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {f99265f8-5898-4db3-9b11-6a0bfdef8104}.xml │ │ │ │ │ └── {f99265f8-5898-4db3-9b11-6a0bfdef8104}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {3df36417-a6e7-4127-a55a-4dba03c31f9e}.xml │ │ │ │ │ └── {3df36417-a6e7-4127-a55a-4dba03c31f9e}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {c80e9d7e-2651-40da-8048-f86aa60777b3}.xml │ │ │ │ │ └── {c80e9d7e-2651-40da-8048-f86aa60777b3}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {39cce202-6d6f-4d02-9d40-1f9c73aa33be}.xml │ │ │ │ ├── {62763bf5-89bd-459e-bedc-b186cadcb247}.xml │ │ │ │ ├── {7ca4eddb-0854-449a-84a1-da92d8527421}.xml │ │ │ │ ├── {7d3144f7-d607-42ee-95dc-d2f1f2fabf67}.xml │ │ │ │ ├── {80b3d219-f7d4-fb68-5111-77c63e0bc3f9}.xml │ │ │ │ ├── {a032ffac-849d-4b87-a142-d41ffb5c21a0}.xml │ │ │ │ ├── {a05619a3-0644-ec11-8c60-000d3a5baf39}.xml │ │ │ │ └── {d84a473a-bc62-42cf-b009-21824daaec06}.xml │ │ ├── autocoe_Department │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {c4b08b7c-738a-4e94-8a73-02dcd59edad5}.xml │ │ │ │ │ └── {c4b08b7c-738a-4e94-8a73-02dcd59edad5}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {68d3fb95-5723-40b2-bc7a-9bfeb4afe1c0}.xml │ │ │ │ │ └── {68d3fb95-5723-40b2-bc7a-9bfeb4afe1c0}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {64781964-ec6f-4cff-b74f-ed038560d174}.xml │ │ │ │ │ └── {64781964-ec6f-4cff-b74f-ed038560d174}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {0ab56cbe-ebc3-453f-9ae3-8257e5f96528}.xml │ │ │ │ ├── {1ae6e1d0-b604-474e-b384-71bd5df95453}.xml │ │ │ │ ├── {6b47c3a1-8397-eb11-b1ac-0022481fb16c}.xml │ │ │ │ ├── {74fedc52-da66-7a0a-694c-ee6b3df49b34}.xml │ │ │ │ ├── {b53fe705-21b1-4631-bc05-1bed89e9aad5}.xml │ │ │ │ ├── {ebf0bf51-9134-49c7-b239-03b2b157fd50}.xml │ │ │ │ └── {fed9f043-e232-4945-80e9-44f812f839cd}.xml │ │ ├── autocoe_DesktopFlowAction │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {eaba9711-0689-4d75-82e5-de79dd4b5afe}.xml │ │ │ │ │ └── {eaba9711-0689-4d75-82e5-de79dd4b5afe}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {d2e9bff3-6be6-4aec-862d-6bb8fd676dec}.xml │ │ │ │ │ └── {d2e9bff3-6be6-4aec-862d-6bb8fd676dec}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {05d10111-c107-4252-b3a2-16ce1a5dad7c}.xml │ │ │ │ │ └── {05d10111-c107-4252-b3a2-16ce1a5dad7c}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {0c9ea2fb-1fa8-ec11-9841-000d3a83c634}.xml │ │ │ │ ├── {1a1a321a-1666-47f4-b5ab-1e08dc29d5e7}.xml │ │ │ │ ├── {1a81ab15-3186-4c1b-86e9-b01390e4e3f3}.xml │ │ │ │ ├── {33f9ba3e-5ab9-48d0-9070-5f7c9a1cbf5f}.xml │ │ │ │ ├── {a233fdba-c165-437c-875c-d1cbcdad5bf2}.xml │ │ │ │ ├── {b6ca9d25-198e-4766-bfb4-1d212e5aa5da}.xml │ │ │ │ ├── {daff6752-4e34-0cf8-25bb-d73529612eba}.xml │ │ │ │ └── {ddbeb981-b737-49b8-a677-ffba66c03b25}.xml │ │ ├── autocoe_DesktopFlowDLPImpactProfile │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {82f75b03-5073-4c63-abf2-4058cccfd1e9}.xml │ │ │ │ │ └── {82f75b03-5073-4c63-abf2-4058cccfd1e9}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {f8881711-d19b-4a62-b004-b93fdb5e1f08}.xml │ │ │ │ │ └── {f8881711-d19b-4a62-b004-b93fdb5e1f08}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {09273b0c-3c92-4ab3-8f13-d33c9b0cfe6a}.xml │ │ │ │ │ └── {09273b0c-3c92-4ab3-8f13-d33c9b0cfe6a}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {0768a6b3-b3cf-472d-90bc-7b36e5a65d00}.xml │ │ │ │ ├── {1993f3c9-7d01-59ba-4b95-22668eb47306}.xml │ │ │ │ ├── {4a16fc8d-6c64-4ef7-a6fd-07fd75987d08}.xml │ │ │ │ ├── {5eda8289-f016-42bb-beef-df5f0faf0b7d}.xml │ │ │ │ ├── {60aa9315-0f9e-472f-b756-93202ecaeaf1}.xml │ │ │ │ ├── {8f174407-32a8-ec11-9841-000d3a83cd21}.xml │ │ │ │ ├── {b1302677-cdc6-4746-9064-72cdc70db791}.xml │ │ │ │ └── {bccd183d-dadd-4b16-8e94-2ac9463cec8f}.xml │ │ ├── autocoe_DesktopFlowDefinition │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {0ba0f1b4-e3c0-41a2-a603-80f5517ac151}.xml │ │ │ │ │ └── {0ba0f1b4-e3c0-41a2-a603-80f5517ac151}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {5f253a2b-3332-4c27-abc5-f9b797603a2d}.xml │ │ │ │ │ └── {5f253a2b-3332-4c27-abc5-f9b797603a2d}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {de132413-bedf-4ac9-b7f8-d748bb1fdef8}.xml │ │ │ │ │ └── {de132413-bedf-4ac9-b7f8-d748bb1fdef8}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {207b8dc0-731b-4043-95f6-300f92f3cd80}.xml │ │ │ │ ├── {4c543cb4-c9b0-d20b-56ec-7cacf69a829e}.xml │ │ │ │ ├── {67cc525c-4070-41b1-b7bd-e3514dbc6b14}.xml │ │ │ │ ├── {773e346a-4826-45c9-b022-07e55eaaf08a}.xml │ │ │ │ ├── {8fd6e02f-46d3-40f8-88d1-cab1d72cfb43}.xml │ │ │ │ ├── {a04c753d-bd5b-4598-976d-3b152cff4afa}.xml │ │ │ │ ├── {b631c8a2-9fa9-ec11-9841-000d3a83c634}.xml │ │ │ │ └── {f42d2368-057c-4c01-a064-6506d2062a89}.xml │ │ ├── autocoe_Environment │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {fa832af6-eb08-40ec-a6a3-db9a0707cb86}.xml │ │ │ │ │ └── {fa832af6-eb08-40ec-a6a3-db9a0707cb86}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {557f7432-1096-4325-9026-e47c8c3f5c80}.xml │ │ │ │ │ └── {557f7432-1096-4325-9026-e47c8c3f5c80}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {7508a770-9e03-44a2-a50a-f49480536e52}.xml │ │ │ │ │ └── {7508a770-9e03-44a2-a50a-f49480536e52}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {30b7ab15-f2e7-4796-82ee-b23c5c643918}.xml │ │ │ │ ├── {71ea10f1-9bbd-43a0-bc0b-605ee95fdaf7}.xml │ │ │ │ ├── {756177b1-0c49-ec11-8c60-000d3a5cb3a6}.xml │ │ │ │ ├── {806df058-04a3-4fa0-b1d0-038555dfd370}.xml │ │ │ │ ├── {c6ed5ced-511e-43b5-89a6-982351c381e7}.xml │ │ │ │ ├── {dafff665-12e8-447b-a26b-228960932029}.xml │ │ │ │ ├── {ee3568ff-d3e4-43dd-ab48-6f297c7e317d}.xml │ │ │ │ └── {f674baaa-badc-decd-076d-16d5733bc6ab}.xml │ │ ├── autocoe_Flow │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {930bd719-e12d-4211-ae56-d1d7c812532a}.xml │ │ │ │ │ └── {930bd719-e12d-4211-ae56-d1d7c812532a}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {faa5fd3a-ee6e-40bb-877f-1691e97b0a1c}.xml │ │ │ │ │ └── {faa5fd3a-ee6e-40bb-877f-1691e97b0a1c}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {99edc514-4cd9-4aaa-9d1a-b9677ab92f43}.xml │ │ │ │ │ └── {99edc514-4cd9-4aaa-9d1a-b9677ab92f43}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {0631d98c-ea31-4bf3-8ab5-018471d268d5}.xml │ │ │ │ ├── {10f87b35-5bc4-4b3e-a05c-501adbaacd41}.xml │ │ │ │ ├── {2cca6fa9-2249-ec11-8c60-000d3a5cb3a6}.xml │ │ │ │ ├── {30b2eef5-088f-c64c-9008-c195920da693}.xml │ │ │ │ ├── {7d369233-a93c-4c69-a179-4dbb350633e1}.xml │ │ │ │ ├── {80e70dcd-c5c2-436b-9064-a7ed00fd6a23}.xml │ │ │ │ ├── {8a98d1d6-8ec4-4d29-acf4-ddfc0c7f07a1}.xml │ │ │ │ └── {af56b752-a6cb-4a72-82a8-60ff8900dcb1}.xml │ │ ├── autocoe_FlowSessionException │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {c3b71e17-4ed2-40d4-9a62-241ee0d55433}.xml │ │ │ │ │ └── {c3b71e17-4ed2-40d4-9a62-241ee0d55433}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {58569b2b-a4b0-4349-b902-042fd0092726}.xml │ │ │ │ │ └── {58569b2b-a4b0-4349-b902-042fd0092726}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {f9a64dcc-a253-473a-9511-cc45725a5f3f}.xml │ │ │ │ │ └── {f9a64dcc-a253-473a-9511-cc45725a5f3f}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {1a4157f1-bb1b-4a84-8df7-389c0307adfe}.xml │ │ │ │ ├── {34575d30-248c-ec11-93b0-0022486f448c}.xml │ │ │ │ ├── {5565f266-199a-4d70-a81b-4a4b66e7e0a1}.xml │ │ │ │ ├── {55fcdfd9-5d33-4243-b8e1-74a97ea78455}.xml │ │ │ │ ├── {697fc125-86d4-4394-bba1-9d6d6586bc68}.xml │ │ │ │ ├── {6eab4a7b-c397-46bb-866d-1d11eedeb876}.xml │ │ │ │ ├── {a84b212e-428c-448d-8150-832cac747e5a}.xml │ │ │ │ └── {e55c3451-d675-7942-33a7-96240ec9d003}.xml │ │ ├── autocoe_FlowSessionExceptionRuleConfiguration │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {6ac1b648-cc47-47a5-a440-16a6c94a735e}.xml │ │ │ │ │ └── {6ac1b648-cc47-47a5-a440-16a6c94a735e}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {15cf351d-6e23-4c09-b8bc-068fe69051b2}.xml │ │ │ │ │ └── {15cf351d-6e23-4c09-b8bc-068fe69051b2}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {1415cd35-9a79-4d4d-b6c5-72916574bbbf}.xml │ │ │ │ │ └── {1415cd35-9a79-4d4d-b6c5-72916574bbbf}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {080e3773-0ee6-45f8-b015-a6af4ecca67a}.xml │ │ │ │ ├── {08fd7d3d-ba18-8aa1-0a98-a4a6027c2658}.xml │ │ │ │ ├── {5e70f33a-c3b8-44b8-9604-b7e2840ac69f}.xml │ │ │ │ ├── {7181fe48-32e0-4821-9bca-bb5c74252f54}.xml │ │ │ │ ├── {8e55ce22-70bd-4fef-bfbb-6154f5eda4d2}.xml │ │ │ │ ├── {ba33c608-14ed-4f85-8911-edf51ee91245}.xml │ │ │ │ ├── {c48bb7b6-9605-455c-b4ba-1b5625bd37b0}.xml │ │ │ │ └── {dd6e2a3b-598d-ec11-b400-0022486f418e}.xml │ │ ├── autocoe_FlowSessionTrace │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {8e2ac11b-e2b9-4430-b107-da87ec89c66e}.xml │ │ │ │ │ └── {8e2ac11b-e2b9-4430-b107-da87ec89c66e}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {54a290da-d307-4a8c-bb56-df25fd7f3e0c}.xml │ │ │ │ │ └── {54a290da-d307-4a8c-bb56-df25fd7f3e0c}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {efb74693-51a8-47e3-9c31-f36a736bb462}.xml │ │ │ │ │ └── {efb74693-51a8-47e3-9c31-f36a736bb462}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {2a941384-cb78-97d6-25b0-c727961a2bbc}.xml │ │ │ │ ├── {33b89905-053c-ec11-b6e5-0022480a615a}.xml │ │ │ │ ├── {92332647-8ebb-435b-a1ff-1f183394b02b}.xml │ │ │ │ ├── {ae3252de-def5-48a7-a7bd-4edb14693636}.xml │ │ │ │ ├── {c45fc0d6-bb58-4b65-ab52-a322d21e090d}.xml │ │ │ │ ├── {c71c557d-d3b0-4a03-b408-66c3037672a9}.xml │ │ │ │ ├── {d2946a64-3fb8-4875-b7de-38973a24ac2b}.xml │ │ │ │ └── {fe61f9ff-fb5c-4e86-85c4-cc7595669c6b}.xml │ │ ├── autocoe_Machine │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {eec0d1cf-8216-4a0e-85b5-6041afb8c462}.xml │ │ │ │ │ └── {eec0d1cf-8216-4a0e-85b5-6041afb8c462}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {0540d8c7-d2da-4841-be4e-e0f04b4fed03}.xml │ │ │ │ │ └── {0540d8c7-d2da-4841-be4e-e0f04b4fed03}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {0a306224-b2d5-4a45-8300-0cd295add8ad}.xml │ │ │ │ │ └── {0a306224-b2d5-4a45-8300-0cd295add8ad}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {3009d186-e868-4955-96fd-15b0b70fce05}.xml │ │ │ │ ├── {39619b3a-72af-4b97-8b54-f219f8a4df2e}.xml │ │ │ │ ├── {5a4caaed-5a82-4e2e-8179-e70d156bdc3a}.xml │ │ │ │ ├── {6a0d9a12-4b7a-4956-a96a-11791b0324a8}.xml │ │ │ │ ├── {7221de30-e430-771b-4fc3-91ec8a38147b}.xml │ │ │ │ ├── {786b40f6-6089-4b12-a012-2bfa0c4ccbed}.xml │ │ │ │ ├── {cb120fc8-11b7-eb11-8236-0022487f95bb}.xml │ │ │ │ └── {fd534b69-990b-46ec-a985-979228e05896}.xml │ │ ├── autocoe_MachineGroup │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {820574e6-67d2-4ed8-bcf7-3062ef899b4e}.xml │ │ │ │ │ └── {820574e6-67d2-4ed8-bcf7-3062ef899b4e}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {499676dd-5d62-4b3c-b594-528f0d0b779c}.xml │ │ │ │ │ └── {499676dd-5d62-4b3c-b594-528f0d0b779c}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {ac370d53-e87f-4da0-b42b-7ce7e5001151}.xml │ │ │ │ │ └── {ac370d53-e87f-4da0-b42b-7ce7e5001151}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {32564172-32f7-411e-8116-0e5bcc3e9bdd}.xml │ │ │ │ ├── {3701082d-522a-43c8-95e3-ea66e9d43704}.xml │ │ │ │ ├── {3871a645-16a2-446c-02e5-cd3ca7fc17c8}.xml │ │ │ │ ├── {42e15059-084f-48f2-a25c-676b33b68264}.xml │ │ │ │ ├── {4ee815a5-590f-43ce-a33d-de2d780c5d01}.xml │ │ │ │ ├── {5add47ed-40d3-45e1-9a41-4da4cc71ab7a}.xml │ │ │ │ ├── {869027a7-329d-41d5-8845-e5d9300a4f7c}.xml │ │ │ │ └── {b5d1de11-10b7-eb11-8236-0022487f9088}.xml │ │ ├── autocoe_ProcessCategory │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {d1a2ffb9-2963-454e-ab77-67df6e376db6}.xml │ │ │ │ │ └── {d1a2ffb9-2963-454e-ab77-67df6e376db6}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {b40773f3-3a07-41a1-9eaf-ac36658bb89c}.xml │ │ │ │ │ └── {b40773f3-3a07-41a1-9eaf-ac36658bb89c}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {cd218035-e64a-4c0b-9e22-265972244818}.xml │ │ │ │ │ └── {cd218035-e64a-4c0b-9e22-265972244818}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {046eb96f-a00e-f4f2-faae-06014547f165}.xml │ │ │ │ ├── {15543c82-21b5-4c6c-8f45-21a3cdee6b7c}.xml │ │ │ │ ├── {2f318bc6-a00b-410c-87b0-09c299d6e7f3}.xml │ │ │ │ ├── {3e869db9-6753-474f-8c06-28bf5bec67ee}.xml │ │ │ │ ├── {c024e647-f2d5-4145-ab85-b61f9935f0d9}.xml │ │ │ │ ├── {d20e81e9-c138-ec11-8c65-0022486db98d}.xml │ │ │ │ ├── {e84421a1-e40a-41f7-ba89-61b1ec790b39}.xml │ │ │ │ └── {fe667328-cb89-4dd2-af28-6853ca5f748b}.xml │ │ ├── autocoe_ProcessSubCategory │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {65b09a8c-fc36-4b9a-99b5-3a3f211d8f19}.xml │ │ │ │ │ └── {65b09a8c-fc36-4b9a-99b5-3a3f211d8f19}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {d254c309-9724-40ca-ad3f-0683e3a7517e}.xml │ │ │ │ │ └── {d254c309-9724-40ca-ad3f-0683e3a7517e}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {81139b60-9e13-4fd6-9458-13b1dea54f46}.xml │ │ │ │ │ └── {81139b60-9e13-4fd6-9458-13b1dea54f46}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {0bfed25e-735a-4838-94bd-362b7fa3f783}.xml │ │ │ │ ├── {3f7a0aff-c138-ec11-8c65-0022486db7ea}.xml │ │ │ │ ├── {5dbfe2da-292c-4c1b-b3a9-435962fb35ff}.xml │ │ │ │ ├── {698699a6-bf27-2d44-609d-6c2866c1b8e0}.xml │ │ │ │ ├── {8b924e47-fff5-4ce7-9102-d3cdda8577d1}.xml │ │ │ │ ├── {95d9e5dc-3b59-4e25-80f6-2333c1736518}.xml │ │ │ │ ├── {b6a7c778-a4e1-410e-a0cf-15ced93220dd}.xml │ │ │ │ └── {c82b1057-8589-4fb7-9d61-02b700272474}.xml │ │ ├── autocoe_ProcessingFrequencyScore │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {9588dd5d-7a34-4bce-a38d-029fb9105555}.xml │ │ │ │ │ └── {9588dd5d-7a34-4bce-a38d-029fb9105555}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {d7ca3dcc-cb42-492a-b88f-ae77489f2e67}.xml │ │ │ │ │ └── {d7ca3dcc-cb42-492a-b88f-ae77489f2e67}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {3e7a91fd-6248-4fdd-8ffa-763c2c3e0975}.xml │ │ │ │ │ └── {3e7a91fd-6248-4fdd-8ffa-763c2c3e0975}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {320047bb-3a25-4613-8179-d502c48ff0b1}.xml │ │ │ │ ├── {3c212167-e104-43ce-a583-9ad086a576db}.xml │ │ │ │ ├── {7f573393-2d3a-ec11-8c60-000d3a09f28e}.xml │ │ │ │ ├── {81e51407-dc53-4b96-b349-7b5077207ca2}.xml │ │ │ │ ├── {8be67ede-81a1-a39a-6adb-a8c30f202e73}.xml │ │ │ │ ├── {97a0d77f-b255-43e6-b8f0-53e2235ecfd8}.xml │ │ │ │ ├── {b8304f81-0a0f-457d-a011-9c56b8b428ea}.xml │ │ │ │ └── {f062531a-cae2-454c-9b50-66bd876db20b}.xml │ │ ├── autocoe_ProcessingPeaksScore │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {ea8c141a-2120-41c8-8104-3cc02c7e92bb}.xml │ │ │ │ │ └── {ea8c141a-2120-41c8-8104-3cc02c7e92bb}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {ab21ad1a-feae-4f78-b1db-7cb6afb3fcdf}.xml │ │ │ │ │ └── {ab21ad1a-feae-4f78-b1db-7cb6afb3fcdf}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {95f4519d-913a-406a-8713-c6e97ef05c69}.xml │ │ │ │ │ └── {95f4519d-913a-406a-8713-c6e97ef05c69}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {1002c532-71c8-4dcb-9484-a67a05f0bdd3}.xml │ │ │ │ ├── {1e5edcab-83b5-4fb7-80e0-aa6f42e4b7eb}.xml │ │ │ │ ├── {264151ae-515e-4637-b506-5bb5f16ee9e8}.xml │ │ │ │ ├── {26916a21-9aca-4f66-bfa4-1543c20c9730}.xml │ │ │ │ ├── {6ee65b4f-2d3a-ec11-8c60-000d3a09fb78}.xml │ │ │ │ ├── {994695ec-99ef-ab14-6554-fb6bef665c1d}.xml │ │ │ │ ├── {b1e020e9-1645-4976-9322-80427a0f6210}.xml │ │ │ │ └── {e289e5e4-73ff-40a6-807f-17f6a2df2c15}.xml │ │ ├── autocoe_Role │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {14ca662b-3022-473a-8e1f-7da8edc8d498}.xml │ │ │ │ │ └── {14ca662b-3022-473a-8e1f-7da8edc8d498}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {51700d60-c729-4197-8bed-e000b781450d}.xml │ │ │ │ │ └── {51700d60-c729-4197-8bed-e000b781450d}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {76102a2c-0352-4c73-9e8b-f9ff903b7ffc}.xml │ │ │ │ │ └── {76102a2c-0352-4c73-9e8b-f9ff903b7ffc}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {16158269-27b7-eb11-8236-0022487f9088}.xml │ │ │ │ ├── {5aee7d06-e300-454e-bc6d-d610a5e4d722}.xml │ │ │ │ ├── {6ce16f3a-1eee-4ecf-a2b8-83f1fa05a567}.xml │ │ │ │ ├── {745e127d-8ea7-4825-657f-5b57799950a6}.xml │ │ │ │ ├── {a45dd3f9-6f83-4e66-9219-10a54fd576d3}.xml │ │ │ │ ├── {dd81764e-c7b9-40aa-a55a-11caf920d592}.xml │ │ │ │ ├── {e4ba82de-ebe2-4613-bda8-68c04c4355bd}.xml │ │ │ │ └── {fc69fad8-65dd-42a9-b4f2-dfa000614049}.xml │ │ ├── autocoe_SolutionMetering │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {2eac89cd-ea85-4e53-b858-138c396229fa}.xml │ │ │ │ │ └── {2eac89cd-ea85-4e53-b858-138c396229fa}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {a65d936b-ca51-43e4-9c73-0b70985999e2}.xml │ │ │ │ │ └── {a65d936b-ca51-43e4-9c73-0b70985999e2}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {8dd20339-af14-4973-8d29-e600c0d41a66}.xml │ │ │ │ │ └── {8dd20339-af14-4973-8d29-e600c0d41a66}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {2b4db1bf-34af-48e2-825a-ef2b3f47cdde}.xml │ │ │ │ ├── {30c12a3a-6b51-49ad-bb63-a998ebf7bc39}.xml │ │ │ │ ├── {4ff7d83b-5379-0792-a79b-feaa3fe704f6}.xml │ │ │ │ ├── {5a9e6c15-1542-4c31-9bab-ca76b026fe18}.xml │ │ │ │ ├── {9489a58b-fad6-4ad5-8cce-08a3059228c4}.xml │ │ │ │ ├── {a949dd42-0be4-4dcd-b99d-7a500ea50378}.xml │ │ │ │ ├── {d94d8db3-0c42-ec11-8c60-00224805d47d}.xml │ │ │ │ └── {dbe84e1a-0185-449e-accd-cb22a112ce0d}.xml │ │ └── autocoe_SolutionMeteringArtifact │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ ├── card │ │ │ │ ├── {77f9dc16-d9ef-4148-8755-0700b24a32f0}.xml │ │ │ │ └── {77f9dc16-d9ef-4148-8755-0700b24a32f0}_managed.xml │ │ │ ├── main │ │ │ │ ├── {8f93e435-2a76-43ef-92f0-14240d9a52a9}.xml │ │ │ │ └── {8f93e435-2a76-43ef-92f0-14240d9a52a9}_managed.xml │ │ │ └── quick │ │ │ │ ├── {d3c4885b-58f8-4bf2-80e3-32b5b2c556ad}.xml │ │ │ │ └── {d3c4885b-58f8-4bf2-80e3-32b5b2c556ad}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ ├── {31f53222-a037-4798-95b3-2fb1de076a2b}.xml │ │ │ ├── {3b721103-76ac-4362-8d7b-ec1da4c0749f}.xml │ │ │ ├── {89c8b93d-3506-3438-8cc3-f4aecc6e4d07}.xml │ │ │ ├── {a02f9d70-7bae-4da2-ad9c-30ef0daa8f84}.xml │ │ │ ├── {be599184-643a-4786-b856-2401c9033541}.xml │ │ │ ├── {bf3381d6-e253-4905-a7eb-f536e0ac6a2d}.xml │ │ │ ├── {f410b18d-0f42-ec11-8c60-00224805d47d}.xml │ │ │ └── {ff2e6d9d-2938-4baf-adf5-ca87bebfe0ab}.xml │ │ ├── OptionSets │ │ ├── autocoe_auditcategory.xml │ │ ├── autocoe_automationdeploymentstatus.xml │ │ ├── autocoe_consequence.xml │ │ ├── autocoe_environmenttype.xml │ │ ├── autocoe_flowtype.xml │ │ ├── autocoe_impactoptions.xml │ │ ├── autocoe_likelihoodofreoccurrence.xml │ │ ├── autocoe_primaryimprovementdriveroptions.xml │ │ ├── autocoe_roleoptions.xml │ │ ├── autocoe_solutionarftifacttype.xml │ │ ├── autocoe_typeoptions.xml │ │ └── autocoe_usertype.xml │ │ ├── Other │ │ ├── Customizations.xml │ │ ├── FieldSecurityProfiles.xml │ │ ├── Relationships.xml │ │ ├── Relationships │ │ │ ├── BusinessUnit.xml │ │ │ ├── Owner.xml │ │ │ ├── SystemUser.xml │ │ │ ├── Team.xml │ │ │ ├── TransactionCurrency.xml │ │ │ ├── Workflow.xml │ │ │ ├── autocoe_AutomationCorporateGoals.xml │ │ │ ├── autocoe_AutomationProject.xml │ │ │ ├── autocoe_ConsoleConfig.xml │ │ │ ├── autocoe_Department.xml │ │ │ ├── autocoe_DesktopFlowDefinition.xml │ │ │ ├── autocoe_Environment.xml │ │ │ ├── autocoe_FlowSessionExceptionRuleConfiguration.xml │ │ │ ├── autocoe_MachineGroup.xml │ │ │ ├── autocoe_ProcessCategory.xml │ │ │ ├── autocoe_ProcessSubCategory.xml │ │ │ ├── autocoe_ProcessingFrequencyScore.xml │ │ │ ├── autocoe_ProcessingPeaksScore.xml │ │ │ ├── autocoe_Role.xml │ │ │ └── autocoe_SolutionMetering.xml │ │ └── Solution.xml │ │ ├── Roles │ │ ├── Automation Project Admin.xml │ │ ├── Automation Project Contributor.xml │ │ └── Automation Project Viewer.xml │ │ ├── WebResources │ │ ├── autocoe_Audit │ │ ├── autocoe_Audit.data.xml │ │ ├── autocoe_Auditlog │ │ ├── autocoe_Auditlog.data.xml │ │ ├── autocoe_BaseConfig.svg │ │ ├── autocoe_BaseConfig.svg.data.xml │ │ ├── autocoe_Category.svg │ │ ├── autocoe_Category.svg.data.xml │ │ ├── autocoe_ConsoleConfig.svg │ │ ├── autocoe_ConsoleConfig.svg.data.xml │ │ ├── autocoe_ConsoleImages.svg │ │ ├── autocoe_ConsoleImages.svg.data.xml │ │ ├── autocoe_Departments.svg │ │ ├── autocoe_Departments.svg.data.xml │ │ ├── autocoe_Environment.svg │ │ ├── autocoe_Environment.svg.data.xml │ │ ├── autocoe_ExceptionWarning.svg │ │ ├── autocoe_ExceptionWarning.svg.data.xml │ │ ├── autocoe_FlowCloud.svg │ │ ├── autocoe_FlowCloud.svg.data.xml │ │ ├── autocoe_Frequency.svg │ │ ├── autocoe_Frequency.svg.data.xml │ │ ├── autocoe_Goal.svg │ │ ├── autocoe_Goal.svg.data.xml │ │ ├── autocoe_LightBulb │ │ ├── autocoe_LightBulb.data.xml │ │ ├── autocoe_OpenDialog │ │ ├── autocoe_OpenDialog.data.xml │ │ ├── autocoe_Paw_Dark.svg │ │ ├── autocoe_Paw_Dark.svg.data.xml │ │ ├── autocoe_Paw_Light.svg │ │ ├── autocoe_Paw_Light.svg.data.xml │ │ ├── autocoe_PeakPerformance.svg │ │ ├── autocoe_PeakPerformance.svg.data.xml │ │ ├── autocoe_PowerAutomate │ │ ├── autocoe_PowerAutomate.data.xml │ │ ├── autocoe_Roles.svg │ │ ├── autocoe_Roles.svg.data.xml │ │ ├── autocoe_RuleHammer.svg │ │ ├── autocoe_RuleHammer.svg.data.xml │ │ ├── autocoe_SessionsHistory.svg │ │ ├── autocoe_SessionsHistory.svg.data.xml │ │ ├── autocoe_Solution.svg │ │ ├── autocoe_Solution.svg.data.xml │ │ ├── autocoe_SolutionLink.svg │ │ ├── autocoe_SolutionLink.svg.data.xml │ │ ├── autocoe_Steps.svg │ │ ├── autocoe_Steps.svg.data.xml │ │ ├── autocoe_gauge.svg │ │ ├── autocoe_gauge.svg.data.xml │ │ ├── autocoe_powercatdark │ │ ├── autocoe_powercatdark.data.xml │ │ ├── autocoe_powercatlight │ │ ├── autocoe_powercatlight.data.xml │ │ ├── new_Stakeholders.svg │ │ └── new_Stakeholders.svg.data.xml │ │ ├── Workflows │ │ ├── AutomationProject-Approvals-FEFEC70D-BF3C-EC11-B6E5-00224805CC2D.json │ │ ├── AutomationProject-Approvals-FEFEC70D-BF3C-EC11-B6E5-00224805CC2D.json.data.xml │ │ ├── CalculateROISavingPotentialforAutomationProject-6DA1EFE0-413A-EC11-8C62-000D3AF47760.json │ │ ├── CalculateROISavingPotentialforAutomationProject-6DA1EFE0-413A-EC11-8C62-000D3AF47760.json.data.xml │ │ ├── CopyofNewbusinessrule-B65D5C0D-92F1-EC11-BB3D-002248098317.xaml │ │ ├── CopyofNewbusinessrule-B65D5C0D-92F1-EC11-BB3D-002248098317.xaml.data.xml │ │ ├── Newbusinessrule-426844F5-91F1-EC11-BB3D-002248098317.xaml │ │ ├── Newbusinessrule-426844F5-91F1-EC11-BB3D-002248098317.xaml.data.xml │ │ ├── ProjectDeleteWorkflow-F60CA264-C3F3-EC11-BB3D-002248098317.xaml │ │ ├── ProjectDeleteWorkflow-F60CA264-C3F3-EC11-BB3D-002248098317.xaml.data.xml │ │ ├── SyncEnvironments-AAA68A05-28B5-EC11-983F-0022480C47C8.json │ │ ├── SyncEnvironments-AAA68A05-28B5-EC11-983F-0022480C47C8.json.data.xml │ │ ├── UpdateInternalROISavingPotential-D55DFCAB-7347-EC11-8C62-000D3A5CBFFC.xaml │ │ └── UpdateInternalROISavingPotential-D55DFCAB-7347-EC11-8C62-000D3A5CBFFC.xaml.data.xml │ │ └── environmentvariabledefinitions │ │ └── autocoe_DefaultFrequencyValues │ │ ├── environmentvariabledefinition.xml │ │ └── environmentvariablevalues.json ├── config │ ├── Prod │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json │ ├── Test │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json │ └── Validation │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json ├── deploy-prod-AutomationCoEMain.yml ├── deploy-test-AutomationCoEMain.yml └── deploy-validation-AutomationCoEMain.yml ├── AutomationCoESatellite ├── Plugins │ └── autocoe-plugins-master │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AutoCoE.Extensibility.Tests │ │ ├── AutoCoE.Extensibility.Tests.cssproj │ │ ├── AutoCoE.Extensibility.Tests.sln │ │ ├── CustomAPIs │ │ │ └── GetDataverseSolutionArtifactsTests.cs │ │ ├── PluginTestBase.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── packages.config │ │ ├── AutoCoE.Extensibility.sln │ │ ├── LICENSE │ │ ├── Plugins │ │ ├── .gitignore │ │ ├── .vscode │ │ │ └── tasks.json │ │ ├── AutoCoEPluginKey.snk │ │ ├── Data Model │ │ │ ├── Autocoe_Desktopflowaction.cs │ │ │ ├── Autocoe_Desktopflowdefinition.cs │ │ │ ├── Autocoe_Desktopflowdlpimpactprofile.cs │ │ │ ├── Autocoe_Flowsessionlog.cs │ │ │ ├── Autocoe_Machinestatuslog.cs │ │ │ ├── Flowmachine.cs │ │ │ ├── OptionSetHelper.cs │ │ │ └── Workflow.cs │ │ ├── Plugin Code │ │ │ ├── DesktopFlowDefinitionUpdate.cs │ │ │ ├── GetDataverseSolutionArtifacts.cs │ │ │ ├── RPALogSyncToDataverseTable.cs │ │ │ └── UpdateDesktopFlowMachineStatusLogs.cs │ │ ├── Plugin Helper │ │ │ ├── PluginBase.cs │ │ │ └── PluginUtility.cs │ │ ├── PluginBase.cs │ │ └── Plugins.cssproj │ │ └── README.md ├── SolutionPackage │ ├── .gitignore │ ├── AutomationCoESatellite.cdsproj │ └── src │ │ ├── CanvasApps │ │ ├── autocoe_automationsolutionviewer_0c4ec.meta.xml │ │ ├── autocoe_automationsolutionviewer_0c4ec_BackgroundImageUri │ │ ├── autocoe_automationsolutionviewer_0c4ec_DocumentUri.msapp │ │ ├── autocoe_dlpimpactanalysisforpad_c54d9.meta.xml │ │ ├── autocoe_dlpimpactanalysisforpad_c54d9_BackgroundImageUri │ │ ├── autocoe_dlpimpactanalysisforpad_c54d9_DocumentUri.msapp │ │ └── src │ │ │ ├── autocoe_automationsolutionviewer_0c4ec │ │ │ ├── Assets │ │ │ │ ├── Images │ │ │ │ │ ├── ArtifactShimmer.gif │ │ │ │ │ ├── Basic Animations.svg │ │ │ │ │ ├── Edit.svg │ │ │ │ │ ├── Forward.svg │ │ │ │ │ ├── Illustration_9bc.jpg │ │ │ │ │ ├── Lock.svg │ │ │ │ │ ├── NavShimmer.gif │ │ │ │ │ ├── Paw_Light.svg │ │ │ │ │ ├── Photo1_3abc.jpg │ │ │ │ │ ├── Sample.png │ │ │ │ │ ├── Shimmer complex.gif │ │ │ │ │ ├── Shimmer.gif │ │ │ │ │ ├── Unlock.svg │ │ │ │ │ ├── document-preview.png │ │ │ │ │ ├── monitorMagnifyIcon.svg │ │ │ │ │ └── shadow.png │ │ │ │ ├── SampleImage.json │ │ │ │ └── logo.jpg │ │ │ ├── CanvasManifest.json │ │ │ ├── ComponentReferences.json │ │ │ ├── Connections │ │ │ │ └── Connections.json │ │ │ ├── ControlTemplates.json │ │ │ ├── DataSources │ │ │ │ ├── Automation Projects.json │ │ │ │ ├── AutomationProjects-RefreshthroughPowerApps.json │ │ │ │ ├── ColumnChartSample.json │ │ │ │ ├── ComboBoxSample.json │ │ │ │ ├── CustomGallerySample.json │ │ │ │ ├── DefaultProjectCollection.json │ │ │ │ ├── DropDownSample.json │ │ │ │ ├── Environment Variable Definitions.json │ │ │ │ ├── Environment Variable Values.json │ │ │ │ ├── EnvironmentDetails.json │ │ │ │ ├── Flow Session Traces.json │ │ │ │ ├── FluentUIIcons.json │ │ │ │ ├── GetDataverseSolutionArtifacts.json │ │ │ │ ├── LegendSample.json │ │ │ │ ├── LineChartSample.json │ │ │ │ ├── ManagedSoln.json │ │ │ │ ├── Processes.json │ │ │ │ ├── Solution Metering Artifacts.json │ │ │ │ ├── Solution Meterings.json │ │ │ │ ├── Solutions.json │ │ │ │ ├── UnmanagedSoln.json │ │ │ │ ├── col_FlowSessionTraces.json │ │ │ │ ├── col_MainNav.json │ │ │ │ ├── col_MainNavItems.json │ │ │ │ ├── col_SolutionArtifacts.json │ │ │ │ ├── col_Solutions.json │ │ │ │ ├── tempCollection.json │ │ │ │ └── tempFlowTacesCollection.json │ │ │ ├── Entropy │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ ├── Entropy.json │ │ │ │ └── checksum.json │ │ │ ├── Other │ │ │ │ ├── References │ │ │ │ │ ├── ModernThemes.json │ │ │ │ │ └── QualifiedValues.json │ │ │ │ └── Resources │ │ │ │ │ └── Controls │ │ │ │ │ ├── PowerCAT.Breadcrumb.bundle.js │ │ │ │ │ ├── PowerCAT.CommandBar.bundle.js │ │ │ │ │ ├── PowerCAT.FluentDetailsList.bundle.js │ │ │ │ │ ├── PowerCAT.Icon.bundle.js │ │ │ │ │ ├── PowerCAT.Nav.bundle.js │ │ │ │ │ ├── PowerCAT.Picker.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.css │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.css │ │ │ │ │ └── PowerCAT.Picker.TagPicker.css │ │ │ │ │ └── strings │ │ │ │ │ ├── PowerCAT.Breadcrumb.Breadcrumb.1033.json │ │ │ │ │ ├── PowerCAT.Breadcrumb.Breadcrumb.1033.resx │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.json │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.resx │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.json │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.resx │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.json │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.resx │ │ │ │ │ ├── PowerCAT.Nav.FluentNav.1033.json │ │ │ │ │ ├── PowerCAT.Nav.FluentNav.1033.resx │ │ │ │ │ ├── PowerCAT.Picker.TagPicker.1033.json │ │ │ │ │ ├── PowerCAT.Picker.TagPicker.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ ├── Src │ │ │ │ ├── App.fx.yaml │ │ │ │ ├── Components │ │ │ │ │ ├── Component1.fx.yaml │ │ │ │ │ ├── Component1.json │ │ │ │ │ ├── ConfirmationDialogControl.fx.yaml │ │ │ │ │ ├── ConfirmationDialogControl.json │ │ │ │ │ ├── GridContainerControl.fx.yaml │ │ │ │ │ ├── GridContainerControl.json │ │ │ │ │ ├── NavigationControl.fx.yaml │ │ │ │ │ ├── NavigationControl.json │ │ │ │ │ ├── Panel_1.fx.yaml │ │ │ │ │ ├── Panel_1.json │ │ │ │ │ ├── PolicyWizardControl.fx.yaml │ │ │ │ │ ├── PolicyWizardControl.json │ │ │ │ │ ├── cmp_Header_1.fx.yaml │ │ │ │ │ └── cmp_Header_1.json │ │ │ │ ├── EditorState │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ ├── Component1.editorstate.json │ │ │ │ │ ├── ConfirmationDialogControl.editorstate.json │ │ │ │ │ ├── CustomIcon.editorstate.json │ │ │ │ │ ├── Dialog.editorstate.json │ │ │ │ │ ├── ExpandMenu.editorstate.json │ │ │ │ │ ├── GridContainerControl.editorstate.json │ │ │ │ │ ├── Header.editorstate.json │ │ │ │ │ ├── NavigationControl.editorstate.json │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ ├── Panel_1.editorstate.json │ │ │ │ │ ├── PolicyWizardControl.editorstate.json │ │ │ │ │ ├── ProgressIndicator.editorstate.json │ │ │ │ │ ├── Screen1.editorstate.json │ │ │ │ │ ├── SearchBox.editorstate.json │ │ │ │ │ ├── Spinner.editorstate.json │ │ │ │ │ ├── cmp_Header_1.editorstate.json │ │ │ │ │ ├── scr_SolutionDashboard.editorstate.json │ │ │ │ │ ├── scr_SolutionDashboard_CK.editorstate.json │ │ │ │ │ ├── scr_SolutionDeployment.editorstate.json │ │ │ │ │ ├── scr_SolutionDeploymentDetails.editorstate.json │ │ │ │ │ ├── scr_SolutionDeployment_CK.editorstate.json │ │ │ │ │ ├── scr_SolutionDetails.editorstate.json │ │ │ │ │ ├── scr_SolutionDetails_CK.editorstate.json │ │ │ │ │ ├── scr_SolutionMeteringAdd.editorstate.json │ │ │ │ │ ├── scr_SolutionRunLogs.editorstate.json │ │ │ │ │ └── scr_SolutionRunLogs_CK.editorstate.json │ │ │ │ ├── Screen1.fx.yaml │ │ │ │ ├── Themes.json │ │ │ │ ├── scr_SolutionDashboard.fx.yaml │ │ │ │ ├── scr_SolutionDashboard_CK.fx.yaml │ │ │ │ ├── scr_SolutionDeployment.fx.yaml │ │ │ │ ├── scr_SolutionDeploymentDetails.fx.yaml │ │ │ │ ├── scr_SolutionDeployment_CK.fx.yaml │ │ │ │ ├── scr_SolutionDetails.fx.yaml │ │ │ │ ├── scr_SolutionDetails_CK.fx.yaml │ │ │ │ ├── scr_SolutionMeteringAdd.fx.yaml │ │ │ │ ├── scr_SolutionRunLogs.fx.yaml │ │ │ │ └── scr_SolutionRunLogs_CK.fx.yaml │ │ │ └── pkgs │ │ │ │ ├── Components │ │ │ │ ├── CustomIcon.fx.yaml │ │ │ │ ├── CustomIcon.json │ │ │ │ ├── Dialog.fx.yaml │ │ │ │ ├── Dialog.json │ │ │ │ ├── ExpandMenu.fx.yaml │ │ │ │ ├── ExpandMenu.json │ │ │ │ ├── Header.fx.yaml │ │ │ │ ├── Header.json │ │ │ │ ├── Panel.fx.yaml │ │ │ │ ├── Panel.json │ │ │ │ ├── ProgressIndicator.fx.yaml │ │ │ │ ├── ProgressIndicator.json │ │ │ │ ├── SearchBox.fx.yaml │ │ │ │ ├── SearchBox.json │ │ │ │ ├── Spinner.fx.yaml │ │ │ │ └── Spinner.json │ │ │ │ ├── PcfControlTemplates │ │ │ │ ├── Button_1.5.2.json │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ ├── Date picker_1.5.1.json │ │ │ │ ├── Fluent Breadcrumb %280.0.20%29_0.0.20.json │ │ │ │ ├── Fluent Command Bar %280.0.20%29_0.0.20.json │ │ │ │ ├── Fluent Details List %280.0.20%29_0.0.20.json │ │ │ │ ├── Fluent Icon %280.0.20%29_0.0.20.json │ │ │ │ ├── Fluent Nav %280.0.20%29_0.0.20.json │ │ │ │ ├── Fluent Picker %280.0.20%29_0.0.20.json │ │ │ │ ├── Fluent Pivot %280.0.20%29_0.0.20.json │ │ │ │ ├── Label_1.6.0.json │ │ │ │ └── Text box_1.6.1.json │ │ │ │ ├── PcfConversions │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ ├── Microsoft_CoreControls_DatePicker.json │ │ │ │ ├── Microsoft_CoreControls_Label.json │ │ │ │ └── Microsoft_CoreControls_TextBox.json │ │ │ │ ├── TableDefinitions │ │ │ │ ├── Automation Projects.json │ │ │ │ ├── Environment Variable Definitions.json │ │ │ │ ├── Environment Variable Values.json │ │ │ │ ├── Flow Session Traces.json │ │ │ │ ├── Processes.json │ │ │ │ ├── Solution Metering Artifacts.json │ │ │ │ ├── Solution Meterings.json │ │ │ │ └── Solutions.json │ │ │ │ ├── Wadl │ │ │ │ ├── AutomationProjects-RefreshthroughPowerApps.xml │ │ │ │ └── GetDataverseSolutionArtifacts.xml │ │ │ │ ├── button_2.2.0.xml │ │ │ │ ├── circle_2.3.0.xml │ │ │ │ ├── combobox_2.4.0.xml │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.3.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── image_2.2.2.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ ├── rectangle_2.3.0.xml │ │ │ │ ├── text_2.3.2.xml │ │ │ │ └── toggleSwitch_2.1.0.xml │ │ │ └── autocoe_dlpimpactanalysisforpad_c54d9 │ │ │ ├── Assets │ │ │ ├── Images │ │ │ │ ├── Active cell in Excel worksheet.svg │ │ │ │ ├── Add item to list.svg │ │ │ │ ├── Add new worksheet.svg │ │ │ │ ├── Add to datetime.svg │ │ │ │ ├── Analyze entities.svg │ │ │ │ ├── Analyze image.svg │ │ │ │ ├── Analyze sentiment.svg │ │ │ │ ├── Analyze syntax.svg │ │ │ │ ├── Analyze tone.svg │ │ │ │ ├── Append line to text.svg │ │ │ │ ├── Attach disk.svg │ │ │ │ ├── Attach to running Excel.svg │ │ │ │ ├── Attach volume.svg │ │ │ │ ├── Basic Animations.svg │ │ │ │ ├── Block Input.svg │ │ │ │ ├── Case.svg │ │ │ │ ├── Change text case.svg │ │ │ │ ├── Change working directory.svg │ │ │ │ ├── Classify image.svg │ │ │ │ ├── Clear clipboard contents.svg │ │ │ │ ├── Clear list.svg │ │ │ │ ├── Click UI element in window.svg │ │ │ │ ├── Click download link on web page.svg │ │ │ │ ├── Click link on web page.svg │ │ │ │ ├── Close CMD session.svg │ │ │ │ ├── Close Excel.svg │ │ │ │ ├── Close Outlook.svg │ │ │ │ ├── Close SQL connection.svg │ │ │ │ ├── Close connection.svg │ │ │ │ ├── Close terminal session.svg │ │ │ │ ├── Close web browser.svg │ │ │ │ ├── Close window.svg │ │ │ │ ├── Collections.svg │ │ │ │ ├── Comment.svg │ │ │ │ ├── Connect to Exchange server.svg │ │ │ │ ├── Connect to server.svg │ │ │ │ ├── Control screen saver.svg │ │ │ │ ├── Convert Base64 to file.svg │ │ │ │ ├── Convert JSON to custom object.svg │ │ │ │ ├── Convert custom object to JSON.svg │ │ │ │ ├── Convert date time to text.svg │ │ │ │ ├── Convert document.svg │ │ │ │ ├── Convert file to Base64.svg │ │ │ │ ├── Convert number to text.svg │ │ │ │ ├── Convert text to datetime.svg │ │ │ │ ├── Convert text to number.svg │ │ │ │ ├── Copy cells from Excel worksheet.svg │ │ │ │ ├── Copy file%28s%29.svg │ │ │ │ ├── Copy folder.svg │ │ │ │ ├── Create EC2 session.svg │ │ │ │ ├── Create FTP directory.svg │ │ │ │ ├── Create folder.svg │ │ │ │ ├── Create group.svg │ │ │ │ ├── Create managed disk.svg │ │ │ │ ├── Create new list.svg │ │ │ │ ├── Create new tab.svg │ │ │ │ ├── Create object.svg │ │ │ │ ├── Create random text.svg │ │ │ │ ├── Create resource group.svg │ │ │ │ ├── Create session.svg │ │ │ │ ├── Create snapshot.svg │ │ │ │ ├── Create user.svg │ │ │ │ ├── Create volume.svg │ │ │ │ ├── Decrease variable.svg │ │ │ │ ├── Decrypt text with AES.svg │ │ │ │ ├── Decrypt to file with AES.svg │ │ │ │ ├── Default case.svg │ │ │ │ ├── Delete Excel worksheet.svg │ │ │ │ ├── Delete FTP directory.svg │ │ │ │ ├── Delete FTP file.svg │ │ │ │ ├── Delete Windows environment.svg │ │ │ │ ├── Delete column from Excel worksheet.svg │ │ │ │ ├── Delete disk.svg │ │ │ │ ├── Delete file%28s%29.svg │ │ │ │ ├── Delete folder.svg │ │ │ │ ├── Delete from Excel worksheet.svg │ │ │ │ ├── Delete object.svg │ │ │ │ ├── Delete resource group.svg │ │ │ │ ├── Delete row from Excel worksheet.svg │ │ │ │ ├── Delete snapshot.svg │ │ │ │ ├── Delete volume.svg │ │ │ │ ├── Describe image.svg │ │ │ │ ├── Describe instances.svg │ │ │ │ ├── Describe snapshots.svg │ │ │ │ ├── Describe virtual machine.svg │ │ │ │ ├── Describe volumes.svg │ │ │ │ ├── Detach disk.svg │ │ │ │ ├── Detach volume.svg │ │ │ │ ├── Detect language.svg │ │ │ │ ├── Display custom form %28Preview%29.svg │ │ │ │ ├── Display input dialog.svg │ │ │ │ ├── Display message.svg │ │ │ │ ├── Display select date dialog.svg │ │ │ │ ├── Display select file dialog.svg │ │ │ │ ├── Display select folder dialog.svg │ │ │ │ ├── Display select from list dialog.svg │ │ │ │ ├── Download file%28s%29 from FTP.svg │ │ │ │ ├── Download folder%28s%29 from FTP.svg │ │ │ │ ├── Download from web.svg │ │ │ │ ├── Drag and drop UI element in window.svg │ │ │ │ ├── Edit.svg │ │ │ │ ├── Else if.svg │ │ │ │ ├── Else.svg │ │ │ │ ├── Empty folder.svg │ │ │ │ ├── Empty recycle bin.svg │ │ │ │ ├── Encrypt from file with AES.svg │ │ │ │ ├── Encrypt text with AES.svg │ │ │ │ ├── End EC2 session.svg │ │ │ │ ├── End session.svg │ │ │ │ ├── End.svg │ │ │ │ ├── Escape text for regular expression.svg │ │ │ │ ├── Execute SQL statement.svg │ │ │ │ ├── Execute XPath expression.svg │ │ │ │ ├── Exit loop.svg │ │ │ │ ├── Exit subflow.svg │ │ │ │ ├── Expand collapse tree node in window.svg │ │ │ │ ├── Extract PDF file pages to new PDF file.svg │ │ │ │ ├── Extract data from web page.svg │ │ │ │ ├── Extract data from window.svg │ │ │ │ ├── Extract images from PDF.svg │ │ │ │ ├── Extract tables from PDF.svg │ │ │ │ ├── Extract text from PDF.svg │ │ │ │ ├── Extract text with OCR.svg │ │ │ │ ├── Find and replace cells in Excel worksheet.svg │ │ │ │ ├── Find common list items.svg │ │ │ │ ├── Focus text field in window.svg │ │ │ │ ├── Focus text field on web page.svg │ │ │ │ ├── Focus window.svg │ │ │ │ ├── For each.svg │ │ │ │ ├── Forward.svg │ │ │ │ ├── Generate random number.svg │ │ │ │ ├── Get Windows environment variable.svg │ │ │ │ ├── Get XML element attribute.svg │ │ │ │ ├── Get XML element value.svg │ │ │ │ ├── Get active Excel worksheet.svg │ │ │ │ ├── Get active cell on Excel worksheet.svg │ │ │ │ ├── Get all Excel worksheet.svg │ │ │ │ ├── Get available EC2 instances.svg │ │ │ │ ├── Get clipboard text.svg │ │ │ │ ├── Get column name on Excel worksheet.svg │ │ │ │ ├── Get current date and time.svg │ │ │ │ ├── Get default printer.svg │ │ │ │ ├── Get details of element on web page.svg │ │ │ │ ├── Get details of the UI element in window.svg │ │ │ │ ├── Get details of web page.svg │ │ │ │ ├── Get details of window.svg │ │ │ │ ├── Get disks.svg │ │ │ │ ├── Get file path part.svg │ │ │ │ ├── Get files in folder.svg │ │ │ │ ├── Get first free row on column from Excel worksheet.svg │ │ │ │ ├── Get first tree column row from Excel worksheet.svg │ │ │ │ ├── Get group info.svg │ │ │ │ ├── Get group members.svg │ │ │ │ ├── Get keyboard identifier.svg │ │ │ │ ├── Get last error.svg │ │ │ │ ├── Get mouse position.svg │ │ │ │ ├── Get password from CyberArk.svg │ │ │ │ ├── Get resource groups.svg │ │ │ │ ├── Get screen resolution.svg │ │ │ │ ├── Get selected cell range from Excel worksheet.svg │ │ │ │ ├── Get selected checkboxes in window.svg │ │ │ │ ├── Get selected radio button in window.svg │ │ │ │ ├── Get snapshots.svg │ │ │ │ ├── Get special folder.svg │ │ │ │ ├── Get subfolders in folder.svg │ │ │ │ ├── Get subscriptions.svg │ │ │ │ ├── Get subtext.svg │ │ │ │ ├── Get temporary file.svg │ │ │ │ ├── Get text from terminal session.svg │ │ │ │ ├── Get user info.svg │ │ │ │ ├── Get virtual machines.svg │ │ │ │ ├── Get window.svg │ │ │ │ ├── Go to web page.svg │ │ │ │ ├── Go to.svg │ │ │ │ ├── Hash from file with key.svg │ │ │ │ ├── Hash from file.svg │ │ │ │ ├── Hash text with key.svg │ │ │ │ ├── Hash text.svg │ │ │ │ ├── Hover mouse over element on web page.svg │ │ │ │ ├── Identify language.svg │ │ │ │ ├── If file exist.svg │ │ │ │ ├── If folder exists.svg │ │ │ │ ├── If image.svg │ │ │ │ ├── If process.svg │ │ │ │ ├── If service.svg │ │ │ │ ├── If text on screen %28OCR%29.svg │ │ │ │ ├── If web contains.svg │ │ │ │ ├── If window contains.svg │ │ │ │ ├── If window.svg │ │ │ │ ├── If.svg │ │ │ │ ├── Illustration_9bc.jpg │ │ │ │ ├── Image properties detection.svg │ │ │ │ ├── Increase variable.svg │ │ │ │ ├── Insert XML element.svg │ │ │ │ ├── Insert column to Excel worksheet.svg │ │ │ │ ├── Insert row to Excel worksheet.svg │ │ │ │ ├── Invoke FTP command.svg │ │ │ │ ├── Invoke SOAP web service.svg │ │ │ │ ├── Invoke web service.svg │ │ │ │ ├── Join text.svg │ │ │ │ ├── Key phrases.svg │ │ │ │ ├── Label detection.svg │ │ │ │ ├── Label.svg │ │ │ │ ├── Landmark detection.svg │ │ │ │ ├── Launch Excel.svg │ │ │ │ ├── Launch Outlook.svg │ │ │ │ ├── Launch new Chrome.svg │ │ │ │ ├── Launch new Firefox.svg │ │ │ │ ├── Launch new Internet Explorer.svg │ │ │ │ ├── Launch new Microsoft Edge.svg │ │ │ │ ├── List FTP directory.svg │ │ │ │ ├── Lock workstation.svg │ │ │ │ ├── Lock.svg │ │ │ │ ├── Log off user.svg │ │ │ │ ├── Logo detection.svg │ │ │ │ ├── Loop condition.svg │ │ │ │ ├── Loop.svg │ │ │ │ ├── Merge PDF files.svg │ │ │ │ ├── Merge list.svg │ │ │ │ ├── Modify group.svg │ │ │ │ ├── Modify user.svg │ │ │ │ ├── MonitorTool.png │ │ │ │ ├── Move cursor on terminal session.svg │ │ │ │ ├── Move file%28s%29.svg │ │ │ │ ├── Move folder.svg │ │ │ │ ├── Move mouse to image.svg │ │ │ │ ├── Move mouse to text on screen %28OCR%29.svg │ │ │ │ ├── Move mouse.svg │ │ │ │ ├── Move object.svg │ │ │ │ ├── Move window.svg │ │ │ │ ├── Next loop.svg │ │ │ │ ├── OCR.svg │ │ │ │ ├── On block error.svg │ │ │ │ ├── Open CMD session.svg │ │ │ │ ├── Open FTP connection.svg │ │ │ │ ├── Open SQL connection.svg │ │ │ │ ├── Open secure FTP connection.svg │ │ │ │ ├── Open terminal session.svg │ │ │ │ ├── PCFEnable.png │ │ │ │ ├── Pad text.svg │ │ │ │ ├── Parse text.svg │ │ │ │ ├── Paste cells to Excel worksheet.svg │ │ │ │ ├── Pause service.svg │ │ │ │ ├── Photo1_3abc.jpg │ │ │ │ ├── Ping.svg │ │ │ │ ├── Play sound.svg │ │ │ │ ├── Populate text field in window.svg │ │ │ │ ├── Populate text field on web page.svg │ │ │ │ ├── PowerCatWhite.png │ │ │ │ ├── Press button in window.svg │ │ │ │ ├── Press button on web page.svg │ │ │ │ ├── Press release key.svg │ │ │ │ ├── Print document.svg │ │ │ │ ├── Process Exchange email messages.svg │ │ │ │ ├── Process email messages in Outlook.svg │ │ │ │ ├── Process email messages.svg │ │ │ │ ├── Read XML from file.svg │ │ │ │ ├── Read from CMD session.svg │ │ │ │ ├── Read from CSV file.svg │ │ │ │ ├── Read from Excel worksheet.svg │ │ │ │ ├── Read text from file.svg │ │ │ │ ├── Reboot EC2 instance.svg │ │ │ │ ├── Recognize entities in text.svg │ │ │ │ ├── Remove XML element attribute.svg │ │ │ │ ├── Remove XML element.svg │ │ │ │ ├── Remove duplicate items from list.svg │ │ │ │ ├── Remove item from list.svg │ │ │ │ ├── Rename Excel worksheet.svg │ │ │ │ ├── Rename FTP file.svg │ │ │ │ ├── Rename file%28s%29.svg │ │ │ │ ├── Rename folder.svg │ │ │ │ ├── Rename object.svg │ │ │ │ ├── Replace text.svg │ │ │ │ ├── Resize window.svg │ │ │ │ ├── Respond to Outlook message.svg │ │ │ │ ├── Restart virtual machine.svg │ │ │ │ ├── Resume service.svg │ │ │ │ ├── Retrieve Exchange email messages.svg │ │ │ │ ├── Retrieve data table column into list.svg │ │ │ │ ├── Retrieve email messages from Outlook.svg │ │ │ │ ├── Retrieve email messages.svg │ │ │ │ ├── Reverse list.svg │ │ │ │ ├── Reverse text.svg │ │ │ │ ├── Run DOS command.svg │ │ │ │ ├── Run Excel macro.svg │ │ │ │ ├── Run JavaScript function on web page.svg │ │ │ │ ├── Run JavaScript.svg │ │ │ │ ├── Run PowerShell Script.svg │ │ │ │ ├── Run Python Script.svg │ │ │ │ ├── Run VBScript.svg │ │ │ │ ├── Run application.svg │ │ │ │ ├── Run desktop flow.svg │ │ │ │ ├── Run subflow.svg │ │ │ │ ├── Safe search detection.svg │ │ │ │ ├── Save Excel.svg │ │ │ │ ├── Save Outlook email messages.svg │ │ │ │ ├── Select cells in Excel worksheet.svg │ │ │ │ ├── Select menu option in window.svg │ │ │ │ ├── Select radio button in window.svg │ │ │ │ ├── Select radio button on web page.svg │ │ │ │ ├── Select tab in window.svg │ │ │ │ ├── Send Exchange email message.svg │ │ │ │ ├── Send email message through Outlook.svg │ │ │ │ ├── Send email.svg │ │ │ │ ├── Send key to terminal session.svg │ │ │ │ ├── Send keys.svg │ │ │ │ ├── Send mouse click.svg │ │ │ │ ├── Sentiment.svg │ │ │ │ ├── Set Windows environment variable.svg │ │ │ │ ├── Set XML element attribute.svg │ │ │ │ ├── Set XML element value.svg │ │ │ │ ├── Set active Excel worksheet.svg │ │ │ │ ├── Set check box state on web page.svg │ │ │ │ ├── Set checkbox state in window.svg │ │ │ │ ├── Set clipboard text.svg │ │ │ │ ├── Set default printer.svg │ │ │ │ ├── Set drop-down list value in window .svg │ │ │ │ ├── Set drop-down list value on web page.svg │ │ │ │ ├── Set key state.svg │ │ │ │ ├── Set screen resolution.svg │ │ │ │ ├── Set text on terminal session.svg │ │ │ │ ├── Set variable.svg │ │ │ │ ├── Set window state.svg │ │ │ │ ├── Set window visibility.svg │ │ │ │ ├── Show desktop.svg │ │ │ │ ├── Shuffle list.svg │ │ │ │ ├── Shut down virtual machine.svg │ │ │ │ ├── Shutdown computer.svg │ │ │ │ ├── Sort list.svg │ │ │ │ ├── Spell check.svg │ │ │ │ ├── Split text.svg │ │ │ │ ├── Start EC2 instance.svg │ │ │ │ ├── Start service.svg │ │ │ │ ├── Start virtual machine.svg │ │ │ │ ├── Stop EC2 instance.svg │ │ │ │ ├── Stop flow.svg │ │ │ │ ├── Stop service.svg │ │ │ │ ├── Stop virtual machine.svg │ │ │ │ ├── Subtrack dates.svg │ │ │ │ ├── Subtract lists.svg │ │ │ │ ├── Switch.svg │ │ │ │ ├── Synchronize FTP command.svg │ │ │ │ ├── Tag image.svg │ │ │ │ ├── Take screenshot of UI element.svg │ │ │ │ ├── Take screenshot of web page.svg │ │ │ │ ├── Take screenshot.svg │ │ │ │ ├── Terminate process.svg │ │ │ │ ├── Text detection.svg │ │ │ │ ├── Translate.svg │ │ │ │ ├── Trim text.svg │ │ │ │ ├── Truncate number.svg │ │ │ │ ├── Unlock user.svg │ │ │ │ ├── Unlock.svg │ │ │ │ ├── Unzip files.svg │ │ │ │ ├── Update user info.svg │ │ │ │ ├── Upload File%28s%29 to FTP.svg │ │ │ │ ├── Upload folder%28s%29 to FTP.svg │ │ │ │ ├── Use desktop.svg │ │ │ │ ├── Wait for file.svg │ │ │ │ ├── Wait for image.svg │ │ │ │ ├── Wait for mouse.svg │ │ │ │ ├── Wait for process.svg │ │ │ │ ├── Wait for service.svg │ │ │ │ ├── Wait for shortcut key.svg │ │ │ │ ├── Wait for text on CMD session.svg │ │ │ │ ├── Wait for text on screen %28OCR%29.svg │ │ │ │ ├── Wait for text on terminal session.svg │ │ │ │ ├── Wait for web page content.svg │ │ │ │ ├── Wait for window content.svg │ │ │ │ ├── Wait for window.svg │ │ │ │ ├── Wait.svg │ │ │ │ ├── Write XML to file.svg │ │ │ │ ├── Write text to file.svg │ │ │ │ ├── Write to CMD session.svg │ │ │ │ ├── Write to CSV file.svg │ │ │ │ ├── Write to Excel worksheet.svg │ │ │ │ ├── Zip files.svg │ │ │ │ ├── deselect_black_24dp.svg │ │ │ │ ├── document-preview.png │ │ │ │ ├── expand-view.svg │ │ │ │ ├── select_all_black_24dp.svg │ │ │ │ └── shadow.png │ │ │ ├── SampleAudio.json │ │ │ ├── SampleImage.json │ │ │ ├── SampleVideo.json │ │ │ └── logo.jpg │ │ │ ├── CanvasManifest.json │ │ │ ├── ComponentReferences.json │ │ │ ├── Connections │ │ │ └── Connections.json │ │ │ ├── ControlTemplates.json │ │ │ ├── DataSources │ │ │ ├── ActionListSource.json │ │ │ ├── ColumnChartSample.json │ │ │ ├── ComboBoxSample.json │ │ │ ├── CommandBarMenu.json │ │ │ ├── CustomGallerySample.json │ │ │ ├── Desktop Flow Actions.json │ │ │ ├── Desktop Flow DLP Impact Profiles.json │ │ │ ├── Desktop Flow Definitions.json │ │ │ ├── DropDownSample.json │ │ │ ├── Environment Variable Definitions.json │ │ │ ├── Environment Variable Values.json │ │ │ ├── LegendSample.json │ │ │ ├── LineChartSample.json │ │ │ ├── ListboxSample.json │ │ │ ├── PADActions.json │ │ │ ├── PADModules.json │ │ │ ├── PieChartSample.json │ │ │ ├── RPADLPImpactProfiles.json │ │ │ ├── RadioSample.json │ │ │ ├── Users.json │ │ │ ├── colAllActions.json │ │ │ └── tempCollection.json │ │ │ ├── Entropy │ │ │ ├── AppCheckerResult.sarif │ │ │ ├── Entropy.json │ │ │ └── checksum.json │ │ │ ├── Other │ │ │ ├── References │ │ │ │ └── QualifiedValues.json │ │ │ └── Resources │ │ │ │ └── Controls │ │ │ │ ├── PowerCAT.FluentDetailsList.bundle.js │ │ │ │ ├── css │ │ │ │ └── PowerCAT.FluentDetailsList.DetailsList.css │ │ │ │ └── strings │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.json │ │ │ │ └── PowerCAT.FluentDetailsList.DetailsList.1033.resx │ │ │ ├── Src │ │ │ ├── App.fx.yaml │ │ │ ├── DLPPolicyImpactAnalysis.fx.yaml │ │ │ ├── DLPPolicyImpactAnalysis_CK.fx.yaml │ │ │ ├── EditorState │ │ │ │ ├── App.editorstate.json │ │ │ │ ├── Card.editorstate.json │ │ │ │ ├── DLPPolicyImpactAnalysis.editorstate.json │ │ │ │ ├── DLPPolicyImpactAnalysis_CK.editorstate.json │ │ │ │ ├── Dialog.editorstate.json │ │ │ │ ├── ExpandMenu.editorstate.json │ │ │ │ ├── FluentIcon.editorstate.json │ │ │ │ ├── Header.editorstate.json │ │ │ │ ├── Panel.editorstate.json │ │ │ │ ├── ProgressIndicator.editorstate.json │ │ │ │ ├── SearchBox_1.editorstate.json │ │ │ │ ├── Spinner.editorstate.json │ │ │ │ ├── Template Screen.editorstate.json │ │ │ │ └── Test_7F478737223C4B69.editorstate.json │ │ │ ├── Template Screen.fx.yaml │ │ │ ├── Tests │ │ │ │ ├── Suite.fx.yaml │ │ │ │ └── Test_7F478737223C4B69.fx.yaml │ │ │ └── Themes.json │ │ │ └── pkgs │ │ │ ├── Components │ │ │ ├── Card.fx.yaml │ │ │ ├── Card.json │ │ │ ├── Dialog.fx.yaml │ │ │ ├── Dialog.json │ │ │ ├── ExpandMenu.fx.yaml │ │ │ ├── ExpandMenu.json │ │ │ ├── FluentIcon.fx.yaml │ │ │ ├── FluentIcon.json │ │ │ ├── Header.fx.yaml │ │ │ ├── Header.json │ │ │ ├── Panel.fx.yaml │ │ │ ├── Panel.json │ │ │ ├── ProgressIndicator.fx.yaml │ │ │ ├── ProgressIndicator.json │ │ │ ├── SearchBox_1.fx.yaml │ │ │ ├── SearchBox_1.json │ │ │ ├── Spinner.fx.yaml │ │ │ └── Spinner.json │ │ │ ├── PcfControlTemplates │ │ │ ├── Button_1.5.2.json │ │ │ ├── Fluent Details List %280.0.20%29_0.0.20.json │ │ │ └── Label_1.6.0.json │ │ │ ├── PcfConversions │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ ├── TableDefinitions │ │ │ ├── Desktop Flow Actions.json │ │ │ ├── Desktop Flow DLP Impact Profiles.json │ │ │ ├── Desktop Flow Definitions.json │ │ │ ├── Environment Variable Definitions.json │ │ │ ├── Environment Variable Values.json │ │ │ └── Users.json │ │ │ ├── button_2.2.0.xml │ │ │ ├── checkbox_2.1.0.xml │ │ │ ├── combobox_2.4.0.xml │ │ │ ├── gallery_2.13.2.xml │ │ │ ├── groupContainer_1.1.0.xml │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ ├── icon_2.5.0.xml │ │ │ ├── image_2.2.1.xml │ │ │ ├── label_2.5.1.xml │ │ │ ├── listbox_2.2.0.xml │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ ├── radio_2.3.0.xml │ │ │ ├── rectangle_2.3.0.xml │ │ │ ├── text_2.3.1.xml │ │ │ └── toggleSwitch_2.1.0.xml │ │ ├── Entities │ │ ├── autocoe_AutomationProject │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {6711b807-b60e-418d-adcc-5777c3a32b2b}.xml │ │ │ │ │ └── {6711b807-b60e-418d-adcc-5777c3a32b2b}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {34f4976d-38c1-4cd1-8f79-8deb0c20601f}.xml │ │ │ │ │ └── {34f4976d-38c1-4cd1-8f79-8deb0c20601f}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {3fd8945f-2890-4a3e-8f87-017848c39ade}.xml │ │ │ │ │ └── {3fd8945f-2890-4a3e-8f87-017848c39ade}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {0edab8df-43ae-4daa-99ee-75393b0e4031}.xml │ │ │ │ ├── {12822732-db24-4653-a649-1862955ec671}.xml │ │ │ │ ├── {1525e598-d1d1-4811-b27e-d8d2d2e008d1}.xml │ │ │ │ ├── {4c80d0a3-eba6-4b58-83bb-d710822a2c74}.xml │ │ │ │ ├── {7e274574-6847-ec11-8c60-000d3a3021ad}.xml │ │ │ │ ├── {825ed83f-7718-4ee5-b322-39b6433fda05}.xml │ │ │ │ ├── {b245c4c5-1939-4f53-b2d3-b2091712b000}.xml │ │ │ │ └── {f840a2ef-da6f-5c6a-0187-7dbdb6ce50dc}.xml │ │ ├── autocoe_DesktopFlowAction │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {eaba9711-0689-4d75-82e5-de79dd4b5afe}.xml │ │ │ │ │ └── {eaba9711-0689-4d75-82e5-de79dd4b5afe}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {d2e9bff3-6be6-4aec-862d-6bb8fd676dec}.xml │ │ │ │ │ └── {d2e9bff3-6be6-4aec-862d-6bb8fd676dec}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {05d10111-c107-4252-b3a2-16ce1a5dad7c}.xml │ │ │ │ │ └── {05d10111-c107-4252-b3a2-16ce1a5dad7c}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {0c9ea2fb-1fa8-ec11-9841-000d3a83c634}.xml │ │ │ │ ├── {1a1a321a-1666-47f4-b5ab-1e08dc29d5e7}.xml │ │ │ │ ├── {1a81ab15-3186-4c1b-86e9-b01390e4e3f3}.xml │ │ │ │ ├── {33f9ba3e-5ab9-48d0-9070-5f7c9a1cbf5f}.xml │ │ │ │ ├── {a233fdba-c165-437c-875c-d1cbcdad5bf2}.xml │ │ │ │ ├── {b6ca9d25-198e-4766-bfb4-1d212e5aa5da}.xml │ │ │ │ ├── {daff6752-4e34-0cf8-25bb-d73529612eba}.xml │ │ │ │ └── {ddbeb981-b737-49b8-a677-ffba66c03b25}.xml │ │ ├── autocoe_DesktopFlowDLPImpactProfile │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {82f75b03-5073-4c63-abf2-4058cccfd1e9}.xml │ │ │ │ │ └── {82f75b03-5073-4c63-abf2-4058cccfd1e9}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {f8881711-d19b-4a62-b004-b93fdb5e1f08}.xml │ │ │ │ │ └── {f8881711-d19b-4a62-b004-b93fdb5e1f08}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {09273b0c-3c92-4ab3-8f13-d33c9b0cfe6a}.xml │ │ │ │ │ └── {09273b0c-3c92-4ab3-8f13-d33c9b0cfe6a}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {0768a6b3-b3cf-472d-90bc-7b36e5a65d00}.xml │ │ │ │ ├── {1993f3c9-7d01-59ba-4b95-22668eb47306}.xml │ │ │ │ ├── {3557dc74-25d0-ec11-a7b5-00224804cf74}.xml │ │ │ │ ├── {4912b35d-25d0-ec11-a7b5-002248040e15}.xml │ │ │ │ ├── {4a16fc8d-6c64-4ef7-a6fd-07fd75987d08}.xml │ │ │ │ ├── {5eda8289-f016-42bb-beef-df5f0faf0b7d}.xml │ │ │ │ ├── {5fdf694c-25d0-ec11-a7b5-002248040e15}.xml │ │ │ │ ├── {60aa9315-0f9e-472f-b756-93202ecaeaf1}.xml │ │ │ │ ├── {8f174407-32a8-ec11-9841-000d3a83cd21}.xml │ │ │ │ ├── {b1302677-cdc6-4746-9064-72cdc70db791}.xml │ │ │ │ ├── {bccd183d-dadd-4b16-8e94-2ac9463cec8f}.xml │ │ │ │ └── {e84a1ef6-27d0-ec11-a7b5-002248040e15}.xml │ │ ├── autocoe_DesktopFlowDefinition │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {0ba0f1b4-e3c0-41a2-a603-80f5517ac151}.xml │ │ │ │ │ └── {0ba0f1b4-e3c0-41a2-a603-80f5517ac151}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {5f253a2b-3332-4c27-abc5-f9b797603a2d}.xml │ │ │ │ │ └── {5f253a2b-3332-4c27-abc5-f9b797603a2d}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {de132413-bedf-4ac9-b7f8-d748bb1fdef8}.xml │ │ │ │ │ └── {de132413-bedf-4ac9-b7f8-d748bb1fdef8}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {207b8dc0-731b-4043-95f6-300f92f3cd80}.xml │ │ │ │ ├── {4c543cb4-c9b0-d20b-56ec-7cacf69a829e}.xml │ │ │ │ ├── {67cc525c-4070-41b1-b7bd-e3514dbc6b14}.xml │ │ │ │ ├── {773e346a-4826-45c9-b022-07e55eaaf08a}.xml │ │ │ │ ├── {8fd6e02f-46d3-40f8-88d1-cab1d72cfb43}.xml │ │ │ │ ├── {a04c753d-bd5b-4598-976d-3b152cff4afa}.xml │ │ │ │ ├── {b631c8a2-9fa9-ec11-9841-000d3a83c634}.xml │ │ │ │ └── {f42d2368-057c-4c01-a064-6506d2062a89}.xml │ │ ├── autocoe_FlowSessionException │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {c3b71e17-4ed2-40d4-9a62-241ee0d55433}.xml │ │ │ │ │ └── {c3b71e17-4ed2-40d4-9a62-241ee0d55433}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {58569b2b-a4b0-4349-b902-042fd0092726}.xml │ │ │ │ │ └── {58569b2b-a4b0-4349-b902-042fd0092726}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {f9a64dcc-a253-473a-9511-cc45725a5f3f}.xml │ │ │ │ │ └── {f9a64dcc-a253-473a-9511-cc45725a5f3f}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {1a4157f1-bb1b-4a84-8df7-389c0307adfe}.xml │ │ │ │ ├── {34575d30-248c-ec11-93b0-0022486f448c}.xml │ │ │ │ ├── {5565f266-199a-4d70-a81b-4a4b66e7e0a1}.xml │ │ │ │ ├── {55fcdfd9-5d33-4243-b8e1-74a97ea78455}.xml │ │ │ │ ├── {697fc125-86d4-4394-bba1-9d6d6586bc68}.xml │ │ │ │ ├── {6eab4a7b-c397-46bb-866d-1d11eedeb876}.xml │ │ │ │ ├── {a84b212e-428c-448d-8150-832cac747e5a}.xml │ │ │ │ └── {e55c3451-d675-7942-33a7-96240ec9d003}.xml │ │ ├── autocoe_FlowSessionExceptionRuleConfiguration │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {6ac1b648-cc47-47a5-a440-16a6c94a735e}.xml │ │ │ │ │ └── {6ac1b648-cc47-47a5-a440-16a6c94a735e}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {15cf351d-6e23-4c09-b8bc-068fe69051b2}.xml │ │ │ │ │ └── {15cf351d-6e23-4c09-b8bc-068fe69051b2}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {1415cd35-9a79-4d4d-b6c5-72916574bbbf}.xml │ │ │ │ │ └── {1415cd35-9a79-4d4d-b6c5-72916574bbbf}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {080e3773-0ee6-45f8-b015-a6af4ecca67a}.xml │ │ │ │ ├── {08fd7d3d-ba18-8aa1-0a98-a4a6027c2658}.xml │ │ │ │ ├── {5e70f33a-c3b8-44b8-9604-b7e2840ac69f}.xml │ │ │ │ ├── {7181fe48-32e0-4821-9bca-bb5c74252f54}.xml │ │ │ │ ├── {8e55ce22-70bd-4fef-bfbb-6154f5eda4d2}.xml │ │ │ │ ├── {ba33c608-14ed-4f85-8911-edf51ee91245}.xml │ │ │ │ ├── {c48bb7b6-9605-455c-b4ba-1b5625bd37b0}.xml │ │ │ │ └── {dd6e2a3b-598d-ec11-b400-0022486f418e}.xml │ │ ├── autocoe_FlowSessionTrace │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {8e2ac11b-e2b9-4430-b107-da87ec89c66e}.xml │ │ │ │ │ └── {8e2ac11b-e2b9-4430-b107-da87ec89c66e}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {54a290da-d307-4a8c-bb56-df25fd7f3e0c}.xml │ │ │ │ │ └── {54a290da-d307-4a8c-bb56-df25fd7f3e0c}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {efb74693-51a8-47e3-9c31-f36a736bb462}.xml │ │ │ │ │ └── {efb74693-51a8-47e3-9c31-f36a736bb462}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {2a941384-cb78-97d6-25b0-c727961a2bbc}.xml │ │ │ │ ├── {33b89905-053c-ec11-b6e5-0022480a615a}.xml │ │ │ │ ├── {92332647-8ebb-435b-a1ff-1f183394b02b}.xml │ │ │ │ ├── {ae3252de-def5-48a7-a7bd-4edb14693636}.xml │ │ │ │ ├── {c45fc0d6-bb58-4b65-ab52-a322d21e090d}.xml │ │ │ │ ├── {c71c557d-d3b0-4a03-b408-66c3037672a9}.xml │ │ │ │ ├── {d2946a64-3fb8-4875-b7de-38973a24ac2b}.xml │ │ │ │ └── {fe61f9ff-fb5c-4e86-85c4-cc7595669c6b}.xml │ │ ├── autocoe_GetDataverseSolutionArtifacts │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {553cb7ee-5448-4df8-a2df-4bc696d02e63}.xml │ │ │ │ │ └── {553cb7ee-5448-4df8-a2df-4bc696d02e63}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {3b2bac99-5972-4fd5-acaa-d948cd26a548}.xml │ │ │ │ │ └── {3b2bac99-5972-4fd5-acaa-d948cd26a548}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {fcaf4f51-3210-48f0-b797-614044b7a449}.xml │ │ │ │ │ └── {fcaf4f51-3210-48f0-b797-614044b7a449}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {08959898-bf0d-4420-92dd-b303e8975435}.xml │ │ │ │ ├── {2d504c67-a9c1-ed11-83ff-000d3a31fdff}.xml │ │ │ │ ├── {47cb765c-66df-4db7-b8c1-552af4c45ae3}.xml │ │ │ │ ├── {4ec7954a-803d-43f6-854e-dec028a67e3c}.xml │ │ │ │ ├── {679f5169-cdfa-44e0-92f5-2eea9d854912}.xml │ │ │ │ ├── {ba168828-2ce4-4d20-a67f-69695b06e3d5}.xml │ │ │ │ ├── {c85673d6-c165-4cb1-9827-49b76647315b}.xml │ │ │ │ └── {f5f57957-51a4-5a9a-bb01-31e2ba0b218f}.xml │ │ ├── autocoe_SolutionMetering │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {2eac89cd-ea85-4e53-b858-138c396229fa}.xml │ │ │ │ │ └── {2eac89cd-ea85-4e53-b858-138c396229fa}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {a65d936b-ca51-43e4-9c73-0b70985999e2}.xml │ │ │ │ │ └── {a65d936b-ca51-43e4-9c73-0b70985999e2}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {8dd20339-af14-4973-8d29-e600c0d41a66}.xml │ │ │ │ │ └── {8dd20339-af14-4973-8d29-e600c0d41a66}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {2b4db1bf-34af-48e2-825a-ef2b3f47cdde}.xml │ │ │ │ ├── {30c12a3a-6b51-49ad-bb63-a998ebf7bc39}.xml │ │ │ │ ├── {4ff7d83b-5379-0792-a79b-feaa3fe704f6}.xml │ │ │ │ ├── {5a9e6c15-1542-4c31-9bab-ca76b026fe18}.xml │ │ │ │ ├── {9489a58b-fad6-4ad5-8cce-08a3059228c4}.xml │ │ │ │ ├── {a949dd42-0be4-4dcd-b99d-7a500ea50378}.xml │ │ │ │ ├── {d94d8db3-0c42-ec11-8c60-00224805d47d}.xml │ │ │ │ └── {dbe84e1a-0185-449e-accd-cb22a112ce0d}.xml │ │ └── autocoe_SolutionMeteringArtifact │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ ├── card │ │ │ │ ├── {77f9dc16-d9ef-4148-8755-0700b24a32f0}.xml │ │ │ │ └── {77f9dc16-d9ef-4148-8755-0700b24a32f0}_managed.xml │ │ │ ├── main │ │ │ │ ├── {8f93e435-2a76-43ef-92f0-14240d9a52a9}.xml │ │ │ │ └── {8f93e435-2a76-43ef-92f0-14240d9a52a9}_managed.xml │ │ │ └── quick │ │ │ │ ├── {d3c4885b-58f8-4bf2-80e3-32b5b2c556ad}.xml │ │ │ │ └── {d3c4885b-58f8-4bf2-80e3-32b5b2c556ad}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ ├── {31f53222-a037-4798-95b3-2fb1de076a2b}.xml │ │ │ ├── {3b721103-76ac-4362-8d7b-ec1da4c0749f}.xml │ │ │ ├── {89c8b93d-3506-3438-8cc3-f4aecc6e4d07}.xml │ │ │ ├── {a02f9d70-7bae-4da2-ad9c-30ef0daa8f84}.xml │ │ │ ├── {be599184-643a-4786-b856-2401c9033541}.xml │ │ │ ├── {bf3381d6-e253-4905-a7eb-f536e0ac6a2d}.xml │ │ │ ├── {f410b18d-0f42-ec11-8c60-00224805d47d}.xml │ │ │ └── {ff2e6d9d-2938-4baf-adf5-ca87bebfe0ab}.xml │ │ ├── OptionSets │ │ └── autocoe_solutionarftifacttype.xml │ │ ├── Other │ │ ├── Customizations.xml │ │ ├── FieldSecurityProfiles.xml │ │ ├── Relationships.xml │ │ ├── Relationships │ │ │ ├── BusinessUnit.xml │ │ │ ├── Owner.xml │ │ │ ├── SystemUser.xml │ │ │ ├── Team.xml │ │ │ ├── Workflow.xml │ │ │ ├── autocoe_AutomationProject.xml │ │ │ ├── autocoe_DesktopFlowDefinition.xml │ │ │ ├── autocoe_FlowSessionExceptionRuleConfiguration.xml │ │ │ └── autocoe_SolutionMetering.xml │ │ └── Solution.xml │ │ ├── PluginAssemblies │ │ └── AutoCoEExtensibilityPlugins-80BD3D0E-EB8E-4F5E-AC44-28973D7382A5 │ │ │ ├── AutoCoEExtensibilityPlugins.dll │ │ │ └── AutoCoEExtensibilityPlugins.dll.data.xml │ │ ├── Roles │ │ ├── Automation Solution Manager User.xml │ │ ├── Desktop Flow Definition Admin.xml │ │ └── Flow Session Exception Admin.xml │ │ ├── Workflows │ │ ├── AutomationProjects-PullfromCoECore-33A0AF05-B43B-EC11-B6E5-00224809B791.json │ │ ├── AutomationProjects-PullfromCoECore-33A0AF05-B43B-EC11-B6E5-00224809B791.json.data.xml │ │ ├── AutomationProjects-RefreshthroughPowerApps_AP-0000-3593353E-C33B-EC11-B6E5-00224809BAE4.json │ │ ├── AutomationProjects-RefreshthroughPowerApps_AP-0000-3593353E-C33B-EC11-B6E5-00224809BAE4.json.data.xml │ │ ├── AutomationProjects-ScheduledSyncfromCoECore-44F7220E-BF3B-EC11-B6E5-00224809BAE4.json │ │ ├── AutomationProjects-ScheduledSyncfromCoECore-44F7220E-BF3B-EC11-B6E5-00224809BAE4.json.data.xml │ │ ├── DesktopFlowActions-PullfromCoECore-98F8449F-4BC2-EC11-983E-0022480A2B42.json │ │ ├── DesktopFlowActions-PullfromCoECore-98F8449F-4BC2-EC11-983E-0022480A2B42.json.data.xml │ │ ├── DesktopFlowDefinitionSync-1FCC863A-F39D-EC11-B400-0022486F4D79.json │ │ ├── DesktopFlowDefinitionSync-1FCC863A-F39D-EC11-B400-0022486F4D79.json.data.xml │ │ ├── FlowSessionExceptionSync-089D9A22-258C-EC11-93B0-000D3A83CA8E.json │ │ ├── FlowSessionExceptionSync-089D9A22-258C-EC11-93B0-000D3A83CA8E.json.data.xml │ │ ├── GetDataverseSolutionArtifacts-D3044475-5041-EC11-8C62-002248047C81.json │ │ ├── GetDataverseSolutionArtifacts-D3044475-5041-EC11-8C62-002248047C81.json.data.xml │ │ ├── RemoveDeletedActionfromDLPProfile-EC28D51D-B8A9-EC11-9840-000D3A83C406.json │ │ ├── RemoveDeletedActionfromDLPProfile-EC28D51D-B8A9-EC11-9840-000D3A83C406.json.data.xml │ │ ├── SyncDeletedselectorfromDLPProfile-F97F0940-A7B9-ED11-83FE-000D3A31FDFF.json │ │ ├── SyncDeletedselectorfromDLPProfile-F97F0940-A7B9-ED11-83FE-000D3A31FDFF.json.data.xml │ │ ├── SyncDesktopFlowDLPProfile-416004C2-F5B5-EC11-983F-000D3A34B95C.json │ │ ├── SyncDesktopFlowDLPProfile-416004C2-F5B5-EC11-983F-000D3A34B95C.json.data.xml │ │ ├── SyncDesktopFlowDefinition-9843DB4B-A9C1-EC11-983E-0022480A2EE0.json │ │ ├── SyncDesktopFlowDefinition-9843DB4B-A9C1-EC11-983E-0022480A2EE0.json.data.xml │ │ ├── SyncDesktopFlows-DF84820C-CF60-EC11-8F8F-000D3A33F4D2.json │ │ ├── SyncDesktopFlows-DF84820C-CF60-EC11-8F8F-000D3A33F4D2.json.data.xml │ │ ├── SyncFSERulesConfirguation-73A72AC0-C99F-EC11-B400-00224806A323.json │ │ ├── SyncFSERulesConfirguation-73A72AC0-C99F-EC11-B400-00224806A323.json.data.xml │ │ ├── SyncFlowSessionExceptions-FE606403-D49F-EC11-B400-002248086AE8.json │ │ ├── SyncFlowSessionExceptions-FE606403-D49F-EC11-B400-002248086AE8.json.data.xml │ │ ├── SyncFlowSessionTraceFlowSessionTrigger-1505B81F-4E3D-EC11-8C63-0022480B320D.json │ │ ├── SyncFlowSessionTraceFlowSessionTrigger-1505B81F-4E3D-EC11-8C63-0022480B320D.json.data.xml │ │ ├── SyncMeteredCloudFlows-A8543335-D460-EC11-8F8F-000D3A33F4D2.json │ │ ├── SyncMeteredCloudFlows-A8543335-D460-EC11-8F8F-000D3A33F4D2.json.data.xml │ │ ├── SyncSolutionMetering-A6F729D2-F746-EC11-8C62-000D3A59109E.json │ │ ├── SyncSolutionMetering-A6F729D2-F746-EC11-8C62-000D3A59109E.json.data.xml │ │ ├── SyncSolutionMeteringArtifacts-969E4419-F946-EC11-8C62-000D3A591EBA.json │ │ └── SyncSolutionMeteringArtifacts-969E4419-F946-EC11-8C62-000D3A591EBA.json.data.xml │ │ ├── customapis │ │ ├── AutoCoE_DesktopFlowDefinitionAnalysis │ │ │ ├── customapi.xml │ │ │ └── customapirequestparameters │ │ │ │ ├── DesktopFlowDefinitionId │ │ │ │ └── customapirequestparameter.xml │ │ │ │ └── StoreExtractedScript │ │ │ │ └── customapirequestparameter.xml │ │ └── autocoe_GetDataverseSolutionArtifacts │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters │ │ │ └── SolutionManagerSolutionId │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties │ │ │ └── SolutionArtifacts │ │ │ └── customapiresponseproperty.xml │ │ └── environmentvariabledefinitions │ │ ├── autocoe_AutomationCoEAlertEmailRecipient │ │ └── environmentvariabledefinition.xml │ │ ├── autocoe_AutomationProjectAppID │ │ └── environmentvariabledefinition.xml │ │ ├── autocoe_DesktopFlowsBaseURL │ │ └── environmentvariabledefinition.xml │ │ ├── autocoe_EnvironmentId │ │ └── environmentvariabledefinition.xml │ │ ├── autocoe_EnvironmentName │ │ └── environmentvariabledefinition.xml │ │ ├── autocoe_EnvironmentRegion │ │ └── environmentvariabledefinition.xml │ │ ├── autocoe_EnvironmentURL │ │ └── environmentvariabledefinition.xml │ │ ├── autocoe_EnvironmentUniqeName │ │ └── environmentvariabledefinition.xml │ │ ├── autocoe_EnvironmentUniqueNameofCoEMain │ │ └── environmentvariabledefinition.xml │ │ ├── autocoe_FlowSessionTraceRecordOwnerId │ │ └── environmentvariabledefinition.xml │ │ ├── autocoe_SolutionManagerArtifactsReadUserId │ │ ├── environmentvariabledefinition.xml │ │ └── environmentvariablevalues.json │ │ └── autocoe_StoreExtractedScript │ │ └── environmentvariabledefinition.xml ├── common.yml ├── config │ ├── Prod │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json │ ├── Test │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json │ └── Validation │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json ├── deploy-prod-AutomationCoESatellite.yml ├── deploy-test-AutomationCoESatellite.yml └── deploy-validation-AutomationCoESatellite.yml ├── AutomationKIT_Packages └── Source │ ├── AutomationKITPackage_Main │ ├── Adapters │ │ ├── CrmServiceAdapter.cs │ │ ├── ICrmServiceAdapter.cs │ │ └── TraceLogAdapter.cs │ ├── App.config │ ├── AutomationKIT_Main.csproj │ ├── AutomationKIT_Main.sln │ ├── AutomationKit_Main.Designer.cs │ ├── AutomationKit_Main.settings │ ├── ExtensionClasses │ │ └── MainPackageExt.cs │ ├── Input.xml │ ├── PackageExtensions │ │ ├── IPackageExtensions.cs │ │ └── PackageExtensions.cs │ ├── PackageImportExtension.cs │ ├── PkgAssets │ │ ├── AutomationKit-SampleData.zip │ │ ├── Content │ │ │ └── en-us │ │ │ │ ├── EndHtml │ │ │ │ ├── CSS │ │ │ │ │ └── common.css │ │ │ │ ├── HTML │ │ │ │ │ └── Default.htm │ │ │ │ └── Images │ │ │ │ │ ├── body_back.gif │ │ │ │ │ ├── ca_back_home.gif │ │ │ │ │ ├── content_back.gif │ │ │ │ │ ├── contentarea_back.gif │ │ │ │ │ ├── ct_back_orig.gif │ │ │ │ │ ├── footer_back.gif │ │ │ │ │ ├── header_back.gif │ │ │ │ │ ├── nav_back.gif │ │ │ │ │ ├── nav_list_back.gif │ │ │ │ │ └── top_item_sel_bg.gif │ │ │ │ └── WelcomeHtml │ │ │ │ ├── CSS │ │ │ │ └── common.css │ │ │ │ ├── HTML │ │ │ │ └── Default.htm │ │ │ │ └── Images │ │ │ │ ├── body_back.gif │ │ │ │ ├── ca_back_home.gif │ │ │ │ ├── content_back.gif │ │ │ │ ├── contentarea_back.gif │ │ │ │ ├── ct_back_orig.gif │ │ │ │ ├── footer_back.gif │ │ │ │ ├── header_back.gif │ │ │ │ ├── nav_back.gif │ │ │ │ ├── nav_list_back.gif │ │ │ │ └── top_item_sel_bg.gif │ │ ├── ImportConfig.xml │ │ ├── autocoe_desktopflowactions.csv │ │ ├── autocoe_flowsessiontraces.csv │ │ └── manifest.ppkg.json │ ├── TermsOfUse.html │ ├── Tests │ │ └── AutomationKITPackage_Main_Tests │ │ │ ├── AutomationKITPackage_Main_Tests.csproj │ │ │ ├── Services │ │ │ └── MainPackageExtSVC.cs │ │ │ ├── TestClasses │ │ │ └── MainPackageExtensionTest.cs │ │ │ └── Usings.cs │ ├── [Content_Types].xml │ ├── constants │ │ └── Constants.cs │ └── logo32x32.png │ ├── AutomationKITPackage_Satellite │ ├── AutomationKIT_Satellite.csproj │ ├── AutomationKIT_Satellite.sln │ ├── AutomationKit_Satellite.Designer.cs │ ├── AutomationKit_Satellite.settings │ ├── Input.xml │ ├── PackageImportExtension.cs │ ├── PkgAssets │ │ ├── Content │ │ │ └── en-us │ │ │ │ ├── EndHtml │ │ │ │ ├── CSS │ │ │ │ │ └── common.css │ │ │ │ ├── HTML │ │ │ │ │ └── Default.htm │ │ │ │ └── Images │ │ │ │ │ ├── body_back.gif │ │ │ │ │ ├── ca_back_home.gif │ │ │ │ │ ├── content_back.gif │ │ │ │ │ ├── contentarea_back.gif │ │ │ │ │ ├── ct_back_orig.gif │ │ │ │ │ ├── footer_back.gif │ │ │ │ │ ├── header_back.gif │ │ │ │ │ ├── nav_back.gif │ │ │ │ │ ├── nav_list_back.gif │ │ │ │ │ └── top_item_sel_bg.gif │ │ │ │ └── WelcomeHtml │ │ │ │ ├── CSS │ │ │ │ └── common.css │ │ │ │ ├── HTML │ │ │ │ └── Default.htm │ │ │ │ └── Images │ │ │ │ ├── body_back.gif │ │ │ │ ├── ca_back_home.gif │ │ │ │ ├── content_back.gif │ │ │ │ ├── contentarea_back.gif │ │ │ │ ├── ct_back_orig.gif │ │ │ │ ├── footer_back.gif │ │ │ │ ├── header_back.gif │ │ │ │ ├── nav_back.gif │ │ │ │ ├── nav_list_back.gif │ │ │ │ └── top_item_sel_bg.gif │ │ ├── ImportConfig.xml │ │ ├── autocoe_desktopflowactions.csv │ │ └── manifest.ppkg.json │ ├── TermsOfUse.html │ ├── [Content_Types].xml │ └── logo32x32.png │ └── PowershellScripts │ ├── AutomationCoEMain_1.0.20221102.1_managed.json │ ├── AutomationCoEMain_manifest.ppkg.json │ ├── AutomationCoESatellite_1.0.20221102.1_managed.json │ ├── AutomationCoESatellite_manifest.ppkg.json │ ├── Install_AutomationKit.ps1 │ ├── build.ps1 │ └── tests │ ├── Install_Main_Solution.tests.ps1 │ └── build.tests.ps1 ├── AutomationKitControlCenter ├── SolutionPackage │ ├── .gitignore │ ├── AutomationKitControlCenter.cdsproj │ └── src │ │ ├── AppModuleSiteMaps │ │ ├── autocoe_ControlCenterSetupWizard │ │ │ ├── AppModuleSiteMap.xml │ │ │ └── AppModuleSiteMap_managed.xml │ │ └── autocoe_CustomActions │ │ │ ├── AppModuleSiteMap.xml │ │ │ └── AppModuleSiteMap_managed.xml │ │ ├── AppModules │ │ ├── autocoe_ControlCenterSetupWizard │ │ │ ├── AppModule.xml │ │ │ └── AppModule_managed.xml │ │ └── autocoe_CustomActions │ │ │ ├── AppModule.xml │ │ │ └── AppModule_managed.xml │ │ ├── CanvasApps │ │ ├── autocoe_automationschedulecancellations_4ee7e.meta.xml │ │ ├── autocoe_automationschedulecancellations_4ee7e_AdditionalUris0_identity.json │ │ ├── autocoe_automationschedulecancellations_4ee7e_BackgroundImageUri │ │ ├── autocoe_automationschedulecancellations_4ee7e_DocumentUri.msapp │ │ ├── autocoe_automationscheduleholidays_fc949.meta.xml │ │ ├── autocoe_automationscheduleholidays_fc949_AdditionalUris0_identity.json │ │ ├── autocoe_automationscheduleholidays_fc949_BackgroundImageUri │ │ ├── autocoe_automationscheduleholidays_fc949_DocumentUri.msapp │ │ ├── autocoe_automationscheduler_85d36.meta.xml │ │ ├── autocoe_automationscheduler_85d36_AdditionalUris0_identity.json │ │ ├── autocoe_automationscheduler_85d36_BackgroundImageUri │ │ ├── autocoe_automationscheduler_85d36_DocumentUri.msapp │ │ ├── autocoe_byolsetupwizard_e3c3b.meta.xml │ │ ├── autocoe_byolsetupwizard_e3c3b_BackgroundImageUri │ │ ├── autocoe_byolsetupwizard_e3c3b_DocumentUri.msapp │ │ ├── autocoe_desktopflow_8c72c.meta.xml │ │ ├── autocoe_desktopflow_8c72c_AdditionalUris0_identity.json │ │ ├── autocoe_desktopflow_8c72c_BackgroundImageUri │ │ ├── autocoe_desktopflow_8c72c_DocumentUri.msapp │ │ ├── autocoe_desktopflowlogsnew_adf7b.meta.xml │ │ ├── autocoe_desktopflowlogsnew_adf7b_AdditionalUris0_identity.json │ │ ├── autocoe_desktopflowlogsnew_adf7b_BackgroundImageUri │ │ └── autocoe_desktopflowlogsnew_adf7b_DocumentUri.msapp │ │ ├── Controls │ │ └── autocoe_PowerCAT.AutomationScheduler │ │ │ ├── ControlManifest.xml │ │ │ ├── ControlManifest.xml.data.xml │ │ │ ├── bundle.js │ │ │ ├── strings │ │ │ └── AutomationScheduler.1033.resx │ │ │ └── styles │ │ │ ├── calendarstyles.css │ │ │ └── cron-builder.css │ │ ├── Dashboards │ │ ├── {b560afc9-da29-ee11-bdf4-0022482b6e98}.xml │ │ └── {e4af7cfa-da29-ee11-bdf4-0022482b6131}.xml │ │ ├── Entities │ │ ├── autocoe_AutomationSchedule │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {ccc7d6fd-c36d-463a-8984-dee2f7981968}.xml │ │ │ │ │ └── {ccc7d6fd-c36d-463a-8984-dee2f7981968}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {07459ede-def7-4cb0-9ecd-05a29434c79e}.xml │ │ │ │ │ └── {07459ede-def7-4cb0-9ecd-05a29434c79e}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {0143ad62-a6a7-4fd5-af06-5e2a67f91811}.xml │ │ │ │ │ └── {0143ad62-a6a7-4fd5-af06-5e2a67f91811}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {07dec940-e7a8-40d2-af4c-f1a04c5b6acd}.xml │ │ │ │ ├── {1edffe4f-5348-4691-a848-fd71d856e76d}.xml │ │ │ │ ├── {54ab03e0-ddaa-ee11-a569-000d3a09c338}.xml │ │ │ │ ├── {b8feac67-0574-434e-8ffa-08a7ad541b16}.xml │ │ │ │ ├── {dad45651-0d6c-4088-a8a4-286274249024}.xml │ │ │ │ ├── {e1612830-2254-4218-ad0c-89cb91baa890}.xml │ │ │ │ └── {f553cad8-4d82-459d-a5a5-078ddf664639}.xml │ │ ├── autocoe_AutomationScheduleCancellations │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {cae78922-8bc9-49e2-b057-989d94a2c547}.xml │ │ │ │ │ └── {cae78922-8bc9-49e2-b057-989d94a2c547}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {f9242fbf-ea82-4723-9767-9d9d01d576e0}.xml │ │ │ │ │ └── {f9242fbf-ea82-4723-9767-9d9d01d576e0}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {8f56ec60-799a-4e16-aab2-614c017ae0ba}.xml │ │ │ │ │ └── {8f56ec60-799a-4e16-aab2-614c017ae0ba}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {71fe45e4-634c-4ed9-b075-fbb0e7736798}.xml │ │ │ │ ├── {9af4651f-be78-4961-975f-12856d857a12}.xml │ │ │ │ ├── {d286e00e-e800-ef11-9f8a-002248197ad7}.xml │ │ │ │ ├── {d4f33233-f2cf-48b2-b404-49a41fcce551}.xml │ │ │ │ ├── {d844edae-9599-44dc-8093-d39d0511fc00}.xml │ │ │ │ ├── {f38a5d7a-bbea-4688-94b0-a042874b6679}.xml │ │ │ │ └── {f6568c8f-8a7a-4faa-bf3c-e0e4c195c015}.xml │ │ ├── autocoe_AutomationScheduleFlowSession │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {d64da7d4-6e61-49f6-9068-99264f5c40a4}.xml │ │ │ │ │ └── {d64da7d4-6e61-49f6-9068-99264f5c40a4}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {af97c27e-7795-410d-a8d2-bc01e33037c4}.xml │ │ │ │ │ └── {af97c27e-7795-410d-a8d2-bc01e33037c4}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {bb3279fb-de34-4c62-b4e7-111c2cb69211}.xml │ │ │ │ │ └── {bb3279fb-de34-4c62-b4e7-111c2cb69211}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {2eea8546-8bf1-4bad-9bcd-7aadb1fab60e}.xml │ │ │ │ ├── {43c8d9ee-e317-4915-bcfe-6d0c8c04c358}.xml │ │ │ │ ├── {85fdf741-bfdc-ee11-904c-0022481657a2}.xml │ │ │ │ ├── {8aacd48d-19a9-4bd3-9cb5-e8d3b79ba1a4}.xml │ │ │ │ ├── {9abb3440-4987-4e2d-b962-569eaf08dc63}.xml │ │ │ │ ├── {9bbae69a-6afd-4c9e-8d0c-d4e8f5107ac8}.xml │ │ │ │ └── {e7d572e5-88e6-44fe-8b9b-467fd2a0ab98}.xml │ │ ├── autocoe_AutomationScheduleHoliday │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {5c79deb0-1281-4664-900c-7fdd7375bf34}.xml │ │ │ │ │ └── {5c79deb0-1281-4664-900c-7fdd7375bf34}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {65985dd5-c223-450b-a86a-727cafe49a42}.xml │ │ │ │ │ └── {65985dd5-c223-450b-a86a-727cafe49a42}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {4eeb4416-c70a-4999-92c7-83f2b8a00f04}.xml │ │ │ │ │ └── {4eeb4416-c70a-4999-92c7-83f2b8a00f04}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {4443d707-bccb-4a06-b2a5-c00e48d42b47}.xml │ │ │ │ ├── {5a4df0c9-53c8-4aef-80d3-69477a235320}.xml │ │ │ │ ├── {727fc7ff-d0e4-4068-bc92-3da1d1d04058}.xml │ │ │ │ ├── {7d59bbbe-5a03-ef11-9f8a-0022481657a2}.xml │ │ │ │ ├── {854f94f6-3f46-446a-b054-f0895d913095}.xml │ │ │ │ ├── {acbc4e92-d36b-4b5a-a4c6-eaeaa19175c8}.xml │ │ │ │ └── {e593b034-ed05-4f23-b4f7-a869f917617b}.xml │ │ ├── autocoe_AutomationScheduleItem │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {f91c9f50-37d8-4583-8ebf-3a0a4b919031}.xml │ │ │ │ │ └── {f91c9f50-37d8-4583-8ebf-3a0a4b919031}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {fd1512a3-c8af-4dad-90fb-3e5c4b7b2338}.xml │ │ │ │ │ └── {fd1512a3-c8af-4dad-90fb-3e5c4b7b2338}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {9f175d66-37df-4cff-9b57-06850f9ce431}.xml │ │ │ │ │ └── {9f175d66-37df-4cff-9b57-06850f9ce431}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {5f60363d-deaa-ee11-a569-000d3a09c338}.xml │ │ │ │ ├── {75de33cc-e29a-4138-b9a1-0e13f82eceb5}.xml │ │ │ │ ├── {c740e2fb-bc50-4eee-aef5-fe1b6b716a4c}.xml │ │ │ │ ├── {c99ac856-d608-4888-8781-baf2b59e6c83}.xml │ │ │ │ ├── {e3b968b8-3e5a-45f7-9b6e-649dcf7693d8}.xml │ │ │ │ ├── {e67ffda4-6500-4d9d-a1f3-752b1ea6d420}.xml │ │ │ │ └── {fdfd0615-dbb1-4774-822f-b37fc12dfe99}.xml │ │ ├── autocoe_AutomationScheduleTriggers │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {9ed4b520-e4ba-480d-9478-0322c3b56f10}.xml │ │ │ │ │ └── {9ed4b520-e4ba-480d-9478-0322c3b56f10}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {26248d64-f756-45b1-993f-7c0f2d7b6544}.xml │ │ │ │ │ └── {26248d64-f756-45b1-993f-7c0f2d7b6544}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {81a8749c-a76c-4336-94d9-a298edb92382}.xml │ │ │ │ │ └── {81a8749c-a76c-4336-94d9-a298edb92382}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ │ ├── {296a8a7a-8ced-4c11-9e2f-74ee670b5520}.xml │ │ │ │ ├── {2e5f1cc6-cd21-ef11-840b-002248197ad7}.xml │ │ │ │ ├── {3d398368-1218-4d57-b809-b52cc08c97ee}.xml │ │ │ │ ├── {738b45da-d63e-4e8d-882b-9e68777f3165}.xml │ │ │ │ ├── {755ce1cf-e683-4cd3-ad5a-0c561e8cd7ad}.xml │ │ │ │ ├── {881d6668-e906-476b-bfa1-717554a05241}.xml │ │ │ │ └── {9182dece-7635-49e2-8e95-f15bcb9eb5eb}.xml │ │ └── autocoe_autocoe_ByolSetup │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ ├── card │ │ │ │ ├── {7dae39aa-97aa-4fab-ab9b-f69433a5861a}.xml │ │ │ │ └── {7dae39aa-97aa-4fab-ab9b-f69433a5861a}_managed.xml │ │ │ ├── main │ │ │ │ ├── {bf4038ca-4fc4-4671-b80f-9326b33deb75}.xml │ │ │ │ └── {bf4038ca-4fc4-4671-b80f-9326b33deb75}_managed.xml │ │ │ └── quick │ │ │ │ ├── {7dd5695b-d650-4bed-97f3-530d1fcda46b}.xml │ │ │ │ └── {7dd5695b-d650-4bed-97f3-530d1fcda46b}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ ├── {0a543bb7-37d2-4caf-b7bc-77050a60d60a}.xml │ │ │ ├── {228822c4-e17f-4657-8595-92e5f60a1468}.xml │ │ │ ├── {3cf91d28-1ab7-4415-b73e-c41ce8db1cb7}.xml │ │ │ ├── {49b75d13-4ea1-42ab-8fb3-fda3b6a6ca2d}.xml │ │ │ ├── {5802316e-7f15-ee11-8f6d-00224824c7a9}.xml │ │ │ ├── {6e3863c8-4bcc-4b07-9839-d51bc63a4f95}.xml │ │ │ └── {9ecee99e-0976-4202-894c-41d06a22e2a2}.xml │ │ ├── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ ├── Relationships │ │ │ ├── BusinessUnit.xml │ │ │ ├── Owner.xml │ │ │ ├── SystemUser.xml │ │ │ ├── Team.xml │ │ │ ├── Workflow.xml │ │ │ ├── autocoe_AutomationSchedule.xml │ │ │ ├── autocoe_AutomationScheduleItem.xml │ │ │ ├── connectionreference.xml │ │ │ └── flowsession.xml │ │ └── Solution.xml │ │ ├── PluginAssemblies │ │ └── AutomationKitAuditFtechAPI-041FE709-3ACF-4866-8700-5B55FCA0E7D6 │ │ │ ├── AutomationKitAuditFtechAPI.dll │ │ │ └── AutomationKitAuditFtechAPI.dll.data.xml │ │ ├── Roles │ │ ├── Automation Schedule User.xml │ │ └── Desktop Flows Support Analyst.xml │ │ ├── SdkMessageProcessingSteps │ │ └── {7a670693-4bd3-ee11-904d-0022481741cb}.xml │ │ ├── WebResources │ │ ├── autocoe_BusinessHoursSign │ │ ├── autocoe_BusinessHoursSign.data.xml │ │ ├── autocoe_PowerAutomate │ │ ├── autocoe_PowerAutomate.data.xml │ │ ├── autocoe_auditsvg │ │ ├── autocoe_auditsvg.data.xml │ │ ├── autocoe_calendar │ │ ├── autocoe_calendar.data.xml │ │ ├── autocoe_calendaricon │ │ ├── autocoe_calendaricon.data.xml │ │ ├── autocoe_monitor │ │ └── autocoe_monitor.data.xml │ │ ├── Workflows │ │ ├── AutomationScheduleTriggerFlow-5A5D4547-81DD-EE11-904C-002248EC1439.json │ │ ├── AutomationScheduleTriggerFlow-5A5D4547-81DD-EE11-904C-002248EC1439.json.data.xml │ │ ├── CloudRecon-AD5DD172-AE21-EF11-840A-6045BD579533.json │ │ ├── CloudRecon-AD5DD172-AE21-EF11-840A-6045BD579533.json.data.xml │ │ ├── SyncAutomationScheduleCloudFlows-86FC9CEF-DD21-EF11-840A-6045BD579533.json │ │ └── SyncAutomationScheduleCloudFlows-86FC9CEF-DD21-EF11-840A-6045BD579533.json.data.xml │ │ ├── customapis │ │ └── cat_auditfetchapi │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters │ │ │ ├── cat_fromdatestring │ │ │ │ └── customapirequestparameter.xml │ │ │ ├── cat_operation │ │ │ │ └── customapirequestparameter.xml │ │ │ ├── cat_tablename │ │ │ │ └── customapirequestparameter.xml │ │ │ ├── cat_todatestring │ │ │ │ └── customapirequestparameter.xml │ │ │ └── cat_userid │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties │ │ │ └── cat_auditrecords │ │ │ └── customapiresponseproperty.xml │ │ ├── environmentvariabledefinitions │ │ └── autocoe_ValidRolestoFetchAduit │ │ │ ├── environmentvariabledefinition.xml │ │ │ └── environmentvariablevalues.json │ │ └── pluginpackages │ │ ├── autocoe_AuditFetchAPI │ │ └── pluginpackage.xml │ │ └── autocoe_AutomationSchedulePlugin │ │ └── pluginpackage.xml ├── config │ ├── Prod │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json │ ├── Test │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json │ └── Validation │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json ├── deploy-prod-AutomationKitControlCenter.yml ├── deploy-test-AutomationKitControlCenter.yml └── deploy-validation-AutomationKitControlCenter.yml ├── AutomationKitInstaller ├── SolutionPackage │ ├── .gitignore │ ├── AutomationKitInstaller.cdsproj │ └── src │ │ ├── CanvasApps │ │ ├── autocoe_automationkitsetupwizard_49b35.meta.xml │ │ ├── autocoe_automationkitsetupwizard_49b35_AdditionalUris0_identity.json │ │ ├── autocoe_automationkitsetupwizard_49b35_BackgroundImageUri │ │ ├── autocoe_automationkitsetupwizard_49b35_DocumentUri.msapp │ │ ├── cr37a_fileattachmentcomponent_54206.meta.xml │ │ ├── cr37a_fileattachmentcomponent_54206_AdditionalUris0_identity.json │ │ ├── cr37a_fileattachmentcomponent_54206_BackgroundImageUri │ │ └── cr37a_fileattachmentcomponent_54206_DocumentUri.msapp │ │ ├── Entities │ │ └── autocoe_AutomationKitSetupWizardMetadata │ │ │ ├── Entity.xml │ │ │ ├── FormXml │ │ │ ├── card │ │ │ │ ├── {0c6fb7a7-8fa4-426c-8fe4-8eca1a724b45}.xml │ │ │ │ └── {0c6fb7a7-8fa4-426c-8fe4-8eca1a724b45}_managed.xml │ │ │ ├── main │ │ │ │ ├── {e2d44be9-cec6-4f9e-81bf-4a94145f79aa}.xml │ │ │ │ └── {e2d44be9-cec6-4f9e-81bf-4a94145f79aa}_managed.xml │ │ │ └── quick │ │ │ │ ├── {006753d2-f035-4c0f-82d2-a5307b8dcb1d}.xml │ │ │ │ └── {006753d2-f035-4c0f-82d2-a5307b8dcb1d}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries │ │ │ ├── {1bda9963-c6bc-4bdc-a428-cdcb055786af}.xml │ │ │ ├── {1dc57241-588d-ef11-8a6a-000d3af46f4e}.xml │ │ │ ├── {20933d92-e9fe-4322-925f-aba31cc6a5f3}.xml │ │ │ ├── {2bf5ba6f-c9ef-4496-8ce4-d66b4e1e5a0f}.xml │ │ │ ├── {54512d97-46c7-4168-b5bc-532ea0924d3e}.xml │ │ │ ├── {7d834196-b3d0-4ec6-a985-bd4816acf281}.xml │ │ │ └── {a305b325-582c-4799-9139-44b4f0f5b9bb}.xml │ │ ├── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ ├── Relationships │ │ │ ├── BusinessUnit.xml │ │ │ ├── Owner.xml │ │ │ ├── SystemUser.xml │ │ │ └── Team.xml │ │ └── Solution.xml │ │ ├── WebResources │ │ ├── autocoe_10330iconeBooksIntune │ │ ├── autocoe_10330iconeBooksIntune.data.xml │ │ ├── autocoe_CheckmarkCircle │ │ ├── autocoe_CheckmarkCircle.data.xml │ │ ├── autocoe_Dataverse_scalable │ │ ├── autocoe_Dataverse_scalable.data.xml │ │ ├── autocoe_DismissCircle │ │ ├── autocoe_DismissCircle.data.xml │ │ ├── autocoe_Info │ │ ├── autocoe_Info.data.xml │ │ ├── autocoe_MicrosoftTeamsimage │ │ ├── autocoe_MicrosoftTeamsimage.data.xml │ │ ├── autocoe_PowerApps_scalable │ │ ├── autocoe_PowerApps_scalable.data.xml │ │ ├── autocoe_PowerAutomate_scalable │ │ ├── autocoe_PowerAutomate_scalable.data.xml │ │ ├── autocoe_Warning │ │ ├── autocoe_Warning.data.xml │ │ ├── autocoe_youtube │ │ └── autocoe_youtube.data.xml │ │ ├── Workflows │ │ ├── FetchAutomationKitReleases-D62599D4-657F-EF11-AC20-000D3AE9A239.json │ │ ├── FetchAutomationKitReleases-D62599D4-657F-EF11-AC20-000D3AE9A239.json.data.xml │ │ ├── FetchEnvironmentSolutions-BA0BA0A5-868A-EF11-8A6A-000D3AE9A239.json │ │ ├── FetchEnvironmentSolutions-BA0BA0A5-868A-EF11-8A6A-000D3AE9A239.json.data.xml │ │ ├── FetchSolutionComponents-05D85DDE-657F-EF11-AC20-000D3AE97D11.json │ │ ├── FetchSolutionComponents-05D85DDE-657F-EF11-AC20-000D3AE97D11.json.data.xml │ │ ├── Fetchflowdetails-AC3B117D-E68B-EF11-8A69-7C1E5206606D.json │ │ ├── Fetchflowdetails-AC3B117D-E68B-EF11-8A69-7C1E5206606D.json.data.xml │ │ ├── ImportDesktopFlowActions-D64EC066-C48C-EF11-8A69-7C1E5206606D.json │ │ ├── ImportDesktopFlowActions-D64EC066-C48C-EF11-8A69-7C1E5206606D.json.data.xml │ │ ├── ImportSolution-2AB90884-A87C-EF11-AC20-002248AF6B71.json │ │ └── ImportSolution-2AB90884-A87C-EF11-AC20-002248AF6B71.json.data.xml │ │ ├── customapis │ │ ├── autocoe_SolutionExtractorAPI │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters │ │ │ │ ├── autocoe_githubreleaseid │ │ │ │ │ └── customapirequestparameter.xml │ │ │ │ ├── autocoe_githubreponame │ │ │ │ │ └── customapirequestparameter.xml │ │ │ │ ├── autocoe_solutiontype │ │ │ │ │ └── customapirequestparameter.xml │ │ │ │ └── autocoe_userid │ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties │ │ │ │ └── autocoe_records │ │ │ │ └── customapiresponseproperty.xml │ │ └── autocoe_SolutionImportAPI │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters │ │ │ ├── autocoe_deploymentsettings │ │ │ │ └── customapirequestparameter.xml │ │ │ ├── autocoe_githubreleaseid │ │ │ │ └── customapirequestparameter.xml │ │ │ ├── autocoe_githubreponame │ │ │ │ └── customapirequestparameter.xml │ │ │ ├── autocoe_importjobid │ │ │ │ └── customapirequestparameter.xml │ │ │ ├── autocoe_solutiontype │ │ │ │ └── customapirequestparameter.xml │ │ │ └── autocoe_userid │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties │ │ │ └── autoco_solutionimportapiresponse │ │ │ └── customapiresponseproperty.xml │ │ └── pluginpackages │ │ └── autocoe_AutomationKitSetup │ │ └── pluginpackage.xml ├── config │ ├── Prod │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json │ ├── Test │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json │ └── Validation │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json ├── deploy-prod-AutomationKitInstaller.yml ├── deploy-test-AutomationKitInstaller.yml └── deploy-validation-AutomationKitInstaller.yml ├── AutomationKitResources ├── Pipelines │ └── export-solution-to-github-automation-kit.yml └── Release │ ├── Collateral │ └── AutomationKit │ │ ├── Automation.Kit.pbit │ │ ├── AutomationKit-SampleData.zip │ │ ├── BYODL_FlowMonitoring_082023.pbit │ │ ├── FlowMonitoring_082023.pbit │ │ ├── README.md │ │ ├── autocoe_desktopflowactions.csv │ │ └── flowsessionview.sql │ ├── Notes │ └── AutomationKit │ │ ├── RELEASENOTES-202211.md │ │ ├── RELEASENOTES-202212.md │ │ ├── RELEASENOTES-202302.md │ │ ├── RELEASENOTES-202303.md │ │ ├── RELEASENOTES-202304.md │ │ ├── RELEASENOTES-202305.md │ │ ├── RELEASENOTES-202306.md │ │ └── RELEASENOTES.md │ └── Pipelines │ └── AutomationKit │ └── create-github-release.yml ├── AutomationKitScheduler ├── SolutionPackage │ ├── .gitignore │ ├── AutomationKitScheduler.cdsproj │ └── src │ │ ├── AppModuleSiteMaps │ │ └── ppcat_FlowScheduler │ │ │ ├── AppModuleSiteMap.xml │ │ │ └── AppModuleSiteMap_managed.xml │ │ ├── AppModules │ │ └── ppcat_FlowScheduler │ │ │ ├── AppModule.xml │ │ │ └── AppModule_managed.xml │ │ ├── CanvasApps │ │ ├── autocoe_schedulergridview_57723.meta.xml │ │ ├── autocoe_schedulergridview_57723_BackgroundImageUri │ │ ├── autocoe_schedulergridview_57723_DocumentUri.msapp │ │ ├── ppcat_schedulercalendarview_5b1bc.meta.xml │ │ ├── ppcat_schedulercalendarview_5b1bc_BackgroundImageUri │ │ ├── ppcat_schedulercalendarview_5b1bc_DocumentUri.msapp │ │ └── src │ │ │ ├── autocoe_schedulergridview_57723 │ │ │ ├── CanvasManifest.json │ │ │ ├── ComponentReferences.json │ │ │ ├── Connections │ │ │ │ ├── Connections.json │ │ │ │ └── default.cds.json │ │ │ ├── ControlTemplates.json │ │ │ ├── Entropy │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ ├── Entropy.json │ │ │ │ └── checksum.json │ │ │ ├── Other │ │ │ │ ├── References │ │ │ │ │ └── NamedValues.json │ │ │ │ └── Resources │ │ │ │ │ └── Controls │ │ │ │ │ ├── PowerCAT.CommandBar.bundle.js │ │ │ │ │ ├── css │ │ │ │ │ └── PowerCAT.CommandBar.CommandBar.css │ │ │ │ │ └── strings │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.json │ │ │ │ │ └── PowerCAT.CommandBar.CommandBar.1033.resx │ │ │ ├── Src │ │ │ │ ├── App.fx.yaml │ │ │ │ ├── EditorState │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ └── Screen1.editorstate.json │ │ │ │ ├── Screen1.fx.yaml │ │ │ │ └── Themes.json │ │ │ └── pkgs │ │ │ │ └── groupContainer_1.2.0.xml │ │ │ └── ppcat_schedulercalendarview_5b1bc │ │ │ ├── Assets │ │ │ └── SampleImage.json │ │ │ ├── CanvasManifest.json │ │ │ ├── ComponentReferences.json │ │ │ ├── Connections │ │ │ └── Connections.json │ │ │ ├── ControlTemplates.json │ │ │ ├── DataSources │ │ │ ├── CustomGallerySample.json │ │ │ ├── EventStatusIdentifiers.json │ │ │ ├── Flow Machine Groups.json │ │ │ ├── Flow Machines.json │ │ │ ├── Flow Sessions.json │ │ │ ├── Process Sessions.json │ │ │ └── Processes.json │ │ │ ├── Entropy │ │ │ ├── AppCheckerResult.sarif │ │ │ ├── Entropy.json │ │ │ └── checksum.json │ │ │ ├── Other │ │ │ ├── References │ │ │ │ ├── NamedValues.json │ │ │ │ └── QualifiedValues.json │ │ │ └── Resources │ │ │ │ └── Controls │ │ │ │ ├── PowerCAT.CommandBar.bundle.js │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ ├── PowerCAT.Icon.bundle.js │ │ │ │ ├── PowerCAT.PADScheduleViewer.bundle.js │ │ │ │ ├── css │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.css │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ ├── strings │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.json │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.resx │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ ├── PowerCAT.Icon.Icon.1033.json │ │ │ │ ├── PowerCAT.Icon.Icon.1033.resx │ │ │ │ ├── PowerCAT.PADScheduleViewer.PADScheduleViewer.1033.json │ │ │ │ └── PowerCAT.PADScheduleViewer.PADScheduleViewer.1033.resx │ │ │ │ └── styles │ │ │ │ ├── PowerCAT.PADScheduleViewer.calendar.module.css │ │ │ │ └── PowerCAT.PADScheduleViewer.customstyle.css │ │ │ ├── Src │ │ │ ├── App.fx.yaml │ │ │ ├── EditorState │ │ │ │ ├── App.editorstate.json │ │ │ │ └── Flow Scheduler Screen.editorstate.json │ │ │ ├── Flow Scheduler Screen.fx.yaml │ │ │ └── Themes.json │ │ │ └── pkgs │ │ │ ├── PcfConversions │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ ├── TableDefinitions │ │ │ ├── Flow Machine Groups.json │ │ │ ├── Flow Machines.json │ │ │ ├── Flow Sessions.json │ │ │ ├── Process Sessions.json │ │ │ └── Processes.json │ │ │ ├── groupContainer_1.1.0.xml │ │ │ ├── icon_2.5.0.xml │ │ │ └── pcfDataField_1.4.0.xml │ │ ├── Controls │ │ └── autocoe_PowerCAT.PADScheduleViewer │ │ │ ├── ControlManifest.xml │ │ │ ├── ControlManifest.xml.data.xml │ │ │ ├── bundle.js │ │ │ ├── platformlibs │ │ │ └── fluent_8_29_0.js │ │ │ ├── strings │ │ │ └── PADScheduleViewer.1033.resx │ │ │ └── styles │ │ │ ├── calendar.module.css │ │ │ └── customstyle.css │ │ ├── Other │ │ ├── Customizations.xml │ │ └── Solution.xml │ │ └── WebResources │ │ ├── autocoe_PowerAutomate │ │ └── autocoe_PowerAutomate.data.xml ├── config │ ├── Prod │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json │ ├── Test │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json │ └── Validation │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json ├── deploy-prod-AutomationKitScheduler.yml ├── deploy-test-AutomationKitScheduler.yml └── deploy-validation-AutomationKitScheduler.yml ├── AutomationKit_Flow_BYODL ├── 001-Synapse Workspace Azure Setup │ ├── Synapse-with-managed-identity │ │ ├── Common │ │ │ ├── EnterprisePolicyOperations.ps1 │ │ │ ├── EnvironmentEnterprisePolicyOperations.ps1 │ │ │ └── EnvironmentOperations.ps1 │ │ ├── CreateIdentityEnterprisePolicy.ps1 │ │ ├── NewIdentity.ps1 │ │ ├── images │ │ │ ├── 232248314-a6e3a007-c76c-420e-8eef-aaa65de924f6.png │ │ │ ├── 232248435-fdeb4a21-462f-4256-8ab9-37e24618a693.png │ │ │ └── 232248437-4d7b95e0-85c0-4c99-ba70-3f80c43ccfe4.png │ │ └── readme.md │ └── readme.md ├── 002- Synapse link Setup │ └── readme.md ├── 003- Power BI Dashboard Setup │ ├── Automation Kit Desktop Flow Activity.pbit │ ├── Scripts │ │ └── flowsessionview.sql │ ├── images │ │ ├── 232245432-930bc4bc-a895-4b35-8ad9-d39a2b7c87a0.png │ │ ├── 232245894-dc109c1d-af37-4ff6-b75b-1e72833bc7d6.png │ │ ├── 233840286-273404a4-ae0e-44c7-b2dc-1eece45c2a4b.png │ │ ├── 233945148-e2697341-40d5-4678-964e-7e3bf48c8531.png │ │ └── powerbi-template-parameters.png │ └── readme.md ├── ARMTemplate │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json ├── Images │ ├── 238124581-508dafd7-b274-4f86-bd47-0c16887bae65.png │ ├── Flowsession.mp4 │ └── deploytoazure.svg ├── readme.md └── tests │ └── ARMTemplate.Tests │ ├── ARMTemplate.Tests.csproj │ ├── ARMTemplate.Tests.sln │ ├── AzureSynapseTests.cs │ ├── CostType.cs │ └── Usings.cs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HOW_TO_CONTRIBUTE.md ├── LICENSE ├── OFFICEHOURS.md ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── docs ├── private-preview-upgrade.md └── walkthrough.md ├── media ├── 121772447-4ede5700-cb6d-11eb-91a7-fe41715fc431.png ├── 121772469-661d4480-cb6d-11eb-8a24-1c53c8d9e8bd.png ├── OfficeHours.png ├── automation-center-of-excellence-overview.png ├── automation-kit.svg └── automation-matutity-model.png ├── officehours.ics └── src └── officehours ├── generate.js ├── package-lock.json └── package.json /.github/ISSUE_TEMPLATE/1-automation-kit-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/.github/ISSUE_TEMPLATE/1-automation-kit-bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-automation-kit-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/.github/ISSUE_TEMPLATE/2-automation-kit-feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-automation-kit-question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/.github/ISSUE_TEMPLATE/3-automation-kit-question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/4-automation-kit-kudos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/.github/ISSUE_TEMPLATE/4-automation-kit-kudos.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/workflows/SyncIssueWithAzDo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/.github/workflows/SyncIssueWithAzDo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/.gitignore -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/AutomationCoEMain.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/AutomationCoEMain.cdsproj -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/AppModuleSiteMaps/autocoe_AutomationCenter/AppModuleSiteMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/AppModuleSiteMaps/autocoe_AutomationCenter/AppModuleSiteMap.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/AppModuleSiteMaps/autocoe_AutomationCenter/AppModuleSiteMap_managed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/AppModuleSiteMaps/autocoe_AutomationCenter/AppModuleSiteMap_managed.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/AppModules/autocoe_AutomationCenter/AppModule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/AppModules/autocoe_AutomationCenter/AppModule.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/AppModules/autocoe_AutomationCenter/AppModule_managed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/AppModules/autocoe_AutomationCenter/AppModule_managed.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_auditlogriskmatrixcustompage_ba6c0.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_auditlogriskmatrixcustompage_ba6c0.meta.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_auditlogriskmatrixcustompage_ba6c0_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_auditlogriskmatrixcustompage_ba6c0_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_auditlogriskmatrixcustompage_ba6c0_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_auditlogriskmatrixcustompage_ba6c0_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_autocoetemplatelibrary_2e31f.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_autocoetemplatelibrary_2e31f.meta.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_autocoetemplatelibrary_2e31f_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_autocoetemplatelibrary_2e31f_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_autocoetemplatelibrary_2e31f_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_autocoetemplatelibrary_2e31f_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationcenterdefaultcommandlibrary86168_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationcenterdefaultcommandlibrary86168_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationcenterdefaultcommandlibrary_960e9.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationcenterdefaultcommandlibrary_960e9.meta.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationcoeconsole_e5b8b.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationcoeconsole_e5b8b.meta.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationcoeconsole_e5b8b_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationcoeconsole_e5b8b_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationcoeconsole_e5b8b_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationcoeconsole_e5b8b_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationproject_f233b.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationproject_f233b.meta.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationproject_f233b_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationproject_f233b_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationproject_f233b_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_automationproject_f233b_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_dlpimpactanalysisforpad_c54d9.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_dlpimpactanalysisforpad_c54d9.meta.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_dlpimpactanalysisforpad_c54d9_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_dlpimpactanalysisforpad_c54d9_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_dlpimpactanalysisforpad_c54d9_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/CanvasApps/autocoe_dlpimpactanalysisforpad_c54d9_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AuditLog/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AuditLog/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AuditLog/Formulas/autocoe_auditlog-autocoe_riskindex.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AuditLog/Formulas/autocoe_auditlog-autocoe_riskindex.xaml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AuditLog/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AuditLog/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AutomationCorporateGoals/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AutomationCorporateGoals/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AutomationCorporateGoals/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AutomationCorporateGoals/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AutomationProject/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AutomationProject/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AutomationProject/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AutomationProject/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AutomationProjectStakeholder/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AutomationProjectStakeholder/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AutomationProjectStakeholder/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AutomationProjectStakeholder/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AverageAutomationStepsScore/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AverageAutomationStepsScore/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AverageAutomationStepsScore/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_AverageAutomationStepsScore/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_BaseConfiguration/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_BaseConfiguration/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_BaseConfiguration/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_BaseConfiguration/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ConsoleConfig/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ConsoleConfig/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ConsoleConfig/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ConsoleConfig/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ConsoleGallery/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ConsoleGallery/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ConsoleGallery/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ConsoleGallery/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Department/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Department/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Department/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Department/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_DesktopFlowAction/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_DesktopFlowAction/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_DesktopFlowAction/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_DesktopFlowAction/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_DesktopFlowDLPImpactProfile/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_DesktopFlowDLPImpactProfile/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_DesktopFlowDLPImpactProfile/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_DesktopFlowDLPImpactProfile/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_DesktopFlowDefinition/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_DesktopFlowDefinition/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_DesktopFlowDefinition/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_DesktopFlowDefinition/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Environment/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Environment/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Environment/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Environment/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/FormXml/card/{930bd719-e12d-4211-ae56-d1d7c812532a}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/FormXml/card/{930bd719-e12d-4211-ae56-d1d7c812532a}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/FormXml/main/{faa5fd3a-ee6e-40bb-877f-1691e97b0a1c}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/FormXml/main/{faa5fd3a-ee6e-40bb-877f-1691e97b0a1c}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/FormXml/quick/{99edc514-4cd9-4aaa-9d1a-b9677ab92f43}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/FormXml/quick/{99edc514-4cd9-4aaa-9d1a-b9677ab92f43}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{0631d98c-ea31-4bf3-8ab5-018471d268d5}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{0631d98c-ea31-4bf3-8ab5-018471d268d5}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{10f87b35-5bc4-4b3e-a05c-501adbaacd41}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{10f87b35-5bc4-4b3e-a05c-501adbaacd41}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{2cca6fa9-2249-ec11-8c60-000d3a5cb3a6}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{2cca6fa9-2249-ec11-8c60-000d3a5cb3a6}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{30b2eef5-088f-c64c-9008-c195920da693}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{30b2eef5-088f-c64c-9008-c195920da693}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{7d369233-a93c-4c69-a179-4dbb350633e1}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{7d369233-a93c-4c69-a179-4dbb350633e1}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{80e70dcd-c5c2-436b-9064-a7ed00fd6a23}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{80e70dcd-c5c2-436b-9064-a7ed00fd6a23}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{8a98d1d6-8ec4-4d29-acf4-ddfc0c7f07a1}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{8a98d1d6-8ec4-4d29-acf4-ddfc0c7f07a1}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{af56b752-a6cb-4a72-82a8-60ff8900dcb1}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Flow/SavedQueries/{af56b752-a6cb-4a72-82a8-60ff8900dcb1}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_FlowSessionException/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_FlowSessionException/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_FlowSessionException/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_FlowSessionException/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_FlowSessionExceptionRuleConfiguration/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_FlowSessionExceptionRuleConfiguration/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_FlowSessionExceptionRuleConfiguration/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_FlowSessionExceptionRuleConfiguration/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_FlowSessionTrace/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_FlowSessionTrace/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_FlowSessionTrace/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_FlowSessionTrace/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Machine/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Machine/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Machine/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Machine/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_MachineGroup/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_MachineGroup/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_MachineGroup/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_MachineGroup/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessCategory/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessCategory/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessCategory/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessCategory/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessSubCategory/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessSubCategory/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessSubCategory/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessSubCategory/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessingFrequencyScore/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessingFrequencyScore/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessingFrequencyScore/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessingFrequencyScore/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessingPeaksScore/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessingPeaksScore/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessingPeaksScore/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_ProcessingPeaksScore/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/FormXml/card/{14ca662b-3022-473a-8e1f-7da8edc8d498}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/FormXml/card/{14ca662b-3022-473a-8e1f-7da8edc8d498}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/FormXml/main/{51700d60-c729-4197-8bed-e000b781450d}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/FormXml/main/{51700d60-c729-4197-8bed-e000b781450d}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/FormXml/quick/{76102a2c-0352-4c73-9e8b-f9ff903b7ffc}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/FormXml/quick/{76102a2c-0352-4c73-9e8b-f9ff903b7ffc}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/SavedQueries/{16158269-27b7-eb11-8236-0022487f9088}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/SavedQueries/{16158269-27b7-eb11-8236-0022487f9088}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/SavedQueries/{5aee7d06-e300-454e-bc6d-d610a5e4d722}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/SavedQueries/{5aee7d06-e300-454e-bc6d-d610a5e4d722}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/SavedQueries/{6ce16f3a-1eee-4ecf-a2b8-83f1fa05a567}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/SavedQueries/{6ce16f3a-1eee-4ecf-a2b8-83f1fa05a567}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/SavedQueries/{745e127d-8ea7-4825-657f-5b57799950a6}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_Role/SavedQueries/{745e127d-8ea7-4825-657f-5b57799950a6}.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_SolutionMetering/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_SolutionMetering/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_SolutionMetering/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_SolutionMetering/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_SolutionMeteringArtifact/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_SolutionMeteringArtifact/Entity.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Entities/autocoe_SolutionMeteringArtifact/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Entities/autocoe_SolutionMeteringArtifact/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_auditcategory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_auditcategory.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_automationdeploymentstatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_automationdeploymentstatus.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_consequence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_consequence.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_environmenttype.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_environmenttype.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_flowtype.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_flowtype.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_impactoptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_impactoptions.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_likelihoodofreoccurrence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_likelihoodofreoccurrence.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_primaryimprovementdriveroptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_primaryimprovementdriveroptions.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_roleoptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_roleoptions.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_solutionarftifacttype.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_solutionarftifacttype.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_typeoptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_typeoptions.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_usertype.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/OptionSets/autocoe_usertype.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Customizations.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/FieldSecurityProfiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/FieldSecurityProfiles.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/BusinessUnit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/BusinessUnit.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/Owner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/Owner.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/SystemUser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/SystemUser.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/Team.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/Team.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/TransactionCurrency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/TransactionCurrency.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/Workflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/Workflow.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_AutomationCorporateGoals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_AutomationCorporateGoals.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_AutomationProject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_AutomationProject.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_ConsoleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_ConsoleConfig.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_Department.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_Department.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_DesktopFlowDefinition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_DesktopFlowDefinition.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_Environment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_Environment.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_FlowSessionExceptionRuleConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_FlowSessionExceptionRuleConfiguration.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_MachineGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_MachineGroup.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_ProcessCategory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_ProcessCategory.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_ProcessSubCategory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_ProcessSubCategory.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_ProcessingFrequencyScore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_ProcessingFrequencyScore.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_ProcessingPeaksScore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_ProcessingPeaksScore.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_Role.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_Role.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_SolutionMetering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Relationships/autocoe_SolutionMetering.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Other/Solution.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Roles/Automation Project Admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Roles/Automation Project Admin.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Roles/Automation Project Contributor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Roles/Automation Project Contributor.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Roles/Automation Project Viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Roles/Automation Project Viewer.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Audit -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Audit.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Audit.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Auditlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Auditlog -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Auditlog.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Auditlog.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_BaseConfig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_BaseConfig.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_BaseConfig.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_BaseConfig.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Category.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Category.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Category.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_ConsoleConfig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_ConsoleConfig.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_ConsoleConfig.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_ConsoleConfig.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_ConsoleImages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_ConsoleImages.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_ConsoleImages.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_ConsoleImages.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Departments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Departments.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Departments.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Departments.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Environment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Environment.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Environment.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Environment.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_ExceptionWarning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_ExceptionWarning.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_ExceptionWarning.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_ExceptionWarning.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_FlowCloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_FlowCloud.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_FlowCloud.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_FlowCloud.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Frequency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Frequency.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Frequency.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Frequency.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Goal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Goal.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Goal.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Goal.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_LightBulb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_LightBulb -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_LightBulb.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_LightBulb.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_OpenDialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_OpenDialog -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_OpenDialog.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_OpenDialog.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Paw_Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Paw_Dark.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Paw_Dark.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Paw_Dark.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Paw_Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Paw_Light.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Paw_Light.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Paw_Light.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_PeakPerformance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_PeakPerformance.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_PeakPerformance.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_PeakPerformance.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_PowerAutomate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_PowerAutomate -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_PowerAutomate.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_PowerAutomate.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Roles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Roles.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Roles.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Roles.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_RuleHammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_RuleHammer.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_RuleHammer.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_RuleHammer.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_SessionsHistory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_SessionsHistory.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_SessionsHistory.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_SessionsHistory.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Solution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Solution.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Solution.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Solution.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_SolutionLink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_SolutionLink.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_SolutionLink.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_SolutionLink.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Steps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Steps.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Steps.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_Steps.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_gauge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_gauge.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_gauge.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_gauge.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_powercatdark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_powercatdark -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_powercatdark.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_powercatdark.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_powercatlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_powercatlight -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_powercatlight.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/autocoe_powercatlight.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/new_Stakeholders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/new_Stakeholders.svg -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/WebResources/new_Stakeholders.svg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/WebResources/new_Stakeholders.svg.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Workflows/CopyofNewbusinessrule-B65D5C0D-92F1-EC11-BB3D-002248098317.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Workflows/CopyofNewbusinessrule-B65D5C0D-92F1-EC11-BB3D-002248098317.xaml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Workflows/Newbusinessrule-426844F5-91F1-EC11-BB3D-002248098317.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Workflows/Newbusinessrule-426844F5-91F1-EC11-BB3D-002248098317.xaml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Workflows/Newbusinessrule-426844F5-91F1-EC11-BB3D-002248098317.xaml.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Workflows/Newbusinessrule-426844F5-91F1-EC11-BB3D-002248098317.xaml.data.xml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Workflows/ProjectDeleteWorkflow-F60CA264-C3F3-EC11-BB3D-002248098317.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Workflows/ProjectDeleteWorkflow-F60CA264-C3F3-EC11-BB3D-002248098317.xaml -------------------------------------------------------------------------------- /AutomationCoEMain/SolutionPackage/src/Workflows/SyncEnvironments-AAA68A05-28B5-EC11-983F-0022480C47C8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/SolutionPackage/src/Workflows/SyncEnvironments-AAA68A05-28B5-EC11-983F-0022480C47C8.json -------------------------------------------------------------------------------- /AutomationCoEMain/config/Prod/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/config/Prod/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationCoEMain/config/Prod/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/config/Prod/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationCoEMain/config/Test/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/config/Test/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationCoEMain/config/Test/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/config/Test/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationCoEMain/config/Validation/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/config/Validation/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationCoEMain/config/Validation/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/config/Validation/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationCoEMain/deploy-prod-AutomationCoEMain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/deploy-prod-AutomationCoEMain.yml -------------------------------------------------------------------------------- /AutomationCoEMain/deploy-test-AutomationCoEMain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/deploy-test-AutomationCoEMain.yml -------------------------------------------------------------------------------- /AutomationCoEMain/deploy-validation-AutomationCoEMain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoEMain/deploy-validation-AutomationCoEMain.yml -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/.gitattributes -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/.gitignore -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/AutoCoE.Extensibility.Tests/AutoCoE.Extensibility.Tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/AutoCoE.Extensibility.Tests/AutoCoE.Extensibility.Tests.sln -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/AutoCoE.Extensibility.Tests/PluginTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/AutoCoE.Extensibility.Tests/PluginTestBase.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/AutoCoE.Extensibility.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/AutoCoE.Extensibility.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/AutoCoE.Extensibility.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/AutoCoE.Extensibility.Tests/app.config -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/AutoCoE.Extensibility.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/AutoCoE.Extensibility.Tests/packages.config -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/AutoCoE.Extensibility.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/AutoCoE.Extensibility.sln -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/LICENSE -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/.gitignore -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/.vscode/tasks.json -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/AutoCoEPluginKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/AutoCoEPluginKey.snk -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/Autocoe_Desktopflowaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/Autocoe_Desktopflowaction.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/Autocoe_Desktopflowdefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/Autocoe_Desktopflowdefinition.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/Autocoe_Desktopflowdlpimpactprofile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/Autocoe_Desktopflowdlpimpactprofile.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/Autocoe_Flowsessionlog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/Autocoe_Flowsessionlog.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/Autocoe_Machinestatuslog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/Autocoe_Machinestatuslog.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/Flowmachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/Flowmachine.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/OptionSetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/OptionSetHelper.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/Workflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Data Model/Workflow.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Plugin Code/DesktopFlowDefinitionUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Plugin Code/DesktopFlowDefinitionUpdate.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Plugin Code/GetDataverseSolutionArtifacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Plugin Code/GetDataverseSolutionArtifacts.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Plugin Code/RPALogSyncToDataverseTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Plugin Code/RPALogSyncToDataverseTable.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Plugin Code/UpdateDesktopFlowMachineStatusLogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Plugin Code/UpdateDesktopFlowMachineStatusLogs.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Plugin Helper/PluginBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Plugin Helper/PluginBase.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Plugin Helper/PluginUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Plugin Helper/PluginUtility.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/PluginBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/PluginBase.cs -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Plugins.cssproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/Plugins/Plugins.cssproj -------------------------------------------------------------------------------- /AutomationCoESatellite/Plugins/autocoe-plugins-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/Plugins/autocoe-plugins-master/README.md -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/.gitignore -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/AutomationCoESatellite.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/AutomationCoESatellite.cdsproj -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/CanvasApps/autocoe_automationsolutionviewer_0c4ec.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/CanvasApps/autocoe_automationsolutionviewer_0c4ec.meta.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/CanvasApps/autocoe_automationsolutionviewer_0c4ec_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/CanvasApps/autocoe_automationsolutionviewer_0c4ec_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/CanvasApps/autocoe_automationsolutionviewer_0c4ec_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/CanvasApps/autocoe_automationsolutionviewer_0c4ec_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/CanvasApps/autocoe_dlpimpactanalysisforpad_c54d9.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/CanvasApps/autocoe_dlpimpactanalysisforpad_c54d9.meta.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/CanvasApps/autocoe_dlpimpactanalysisforpad_c54d9_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/CanvasApps/autocoe_dlpimpactanalysisforpad_c54d9_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/CanvasApps/autocoe_dlpimpactanalysisforpad_c54d9_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/CanvasApps/autocoe_dlpimpactanalysisforpad_c54d9_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/CanvasApps/src/autocoe_automationsolutionviewer_0c4ec/Assets/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/CanvasApps/src/autocoe_automationsolutionviewer_0c4ec/Assets/logo.jpg -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/CanvasApps/src/autocoe_automationsolutionviewer_0c4ec/Src/App.fx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/CanvasApps/src/autocoe_automationsolutionviewer_0c4ec/Src/App.fx.yaml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/CanvasApps/src/autocoe_automationsolutionviewer_0c4ec/Src/Themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/CanvasApps/src/autocoe_automationsolutionviewer_0c4ec/Src/Themes.json -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/CanvasApps/src/autocoe_dlpimpactanalysisforpad_c54d9/Assets/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/CanvasApps/src/autocoe_dlpimpactanalysisforpad_c54d9/Assets/logo.jpg -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/CanvasApps/src/autocoe_dlpimpactanalysisforpad_c54d9/Connections/Connections.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/CanvasApps/src/autocoe_dlpimpactanalysisforpad_c54d9/Src/App.fx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/CanvasApps/src/autocoe_dlpimpactanalysisforpad_c54d9/Src/App.fx.yaml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/CanvasApps/src/autocoe_dlpimpactanalysisforpad_c54d9/Src/Tests/Test_7F478737223C4B69.fx.yaml: -------------------------------------------------------------------------------- 1 | Test_7F478737223C4B69 As AppTest: 2 | 3 | -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/CanvasApps/src/autocoe_dlpimpactanalysisforpad_c54d9/Src/Themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/CanvasApps/src/autocoe_dlpimpactanalysisforpad_c54d9/Src/Themes.json -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_AutomationProject/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_AutomationProject/Entity.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_AutomationProject/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_AutomationProject/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_DesktopFlowAction/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_DesktopFlowAction/Entity.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_DesktopFlowAction/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_DesktopFlowAction/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_DesktopFlowDLPImpactProfile/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_DesktopFlowDLPImpactProfile/Entity.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_DesktopFlowDLPImpactProfile/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_DesktopFlowDLPImpactProfile/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_DesktopFlowDefinition/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_DesktopFlowDefinition/Entity.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_DesktopFlowDefinition/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_DesktopFlowDefinition/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_FlowSessionException/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_FlowSessionException/Entity.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_FlowSessionException/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_FlowSessionException/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_FlowSessionExceptionRuleConfiguration/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_FlowSessionExceptionRuleConfiguration/Entity.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_FlowSessionExceptionRuleConfiguration/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_FlowSessionExceptionRuleConfiguration/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_FlowSessionTrace/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_FlowSessionTrace/Entity.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_FlowSessionTrace/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_FlowSessionTrace/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_GetDataverseSolutionArtifacts/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_GetDataverseSolutionArtifacts/Entity.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_GetDataverseSolutionArtifacts/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_GetDataverseSolutionArtifacts/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_SolutionMetering/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_SolutionMetering/Entity.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_SolutionMetering/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_SolutionMetering/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_SolutionMeteringArtifact/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_SolutionMeteringArtifact/Entity.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_SolutionMeteringArtifact/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Entities/autocoe_SolutionMeteringArtifact/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/OptionSets/autocoe_solutionarftifacttype.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/OptionSets/autocoe_solutionarftifacttype.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Other/Customizations.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Other/FieldSecurityProfiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Other/FieldSecurityProfiles.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Other/Relationships.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Other/Relationships.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Other/Relationships/BusinessUnit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Other/Relationships/BusinessUnit.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Other/Relationships/Owner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Other/Relationships/Owner.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Other/Relationships/SystemUser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Other/Relationships/SystemUser.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Other/Relationships/Team.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Other/Relationships/Team.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Other/Relationships/Workflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Other/Relationships/Workflow.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Other/Relationships/autocoe_AutomationProject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Other/Relationships/autocoe_AutomationProject.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Other/Relationships/autocoe_DesktopFlowDefinition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Other/Relationships/autocoe_DesktopFlowDefinition.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Other/Relationships/autocoe_FlowSessionExceptionRuleConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Other/Relationships/autocoe_FlowSessionExceptionRuleConfiguration.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Other/Relationships/autocoe_SolutionMetering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Other/Relationships/autocoe_SolutionMetering.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Other/Solution.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Roles/Automation Solution Manager User.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Roles/Automation Solution Manager User.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Roles/Desktop Flow Definition Admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Roles/Desktop Flow Definition Admin.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Roles/Flow Session Exception Admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Roles/Flow Session Exception Admin.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/Workflows/SyncDesktopFlows-DF84820C-CF60-EC11-8F8F-000D3A33F4D2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/Workflows/SyncDesktopFlows-DF84820C-CF60-EC11-8F8F-000D3A33F4D2.json -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/customapis/AutoCoE_DesktopFlowDefinitionAnalysis/customapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/customapis/AutoCoE_DesktopFlowDefinitionAnalysis/customapi.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/SolutionPackage/src/customapis/autocoe_GetDataverseSolutionArtifacts/customapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/SolutionPackage/src/customapis/autocoe_GetDataverseSolutionArtifacts/customapi.xml -------------------------------------------------------------------------------- /AutomationCoESatellite/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/common.yml -------------------------------------------------------------------------------- /AutomationCoESatellite/config/Prod/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/config/Prod/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationCoESatellite/config/Prod/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/config/Prod/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationCoESatellite/config/Test/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/config/Test/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationCoESatellite/config/Test/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/config/Test/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationCoESatellite/config/Validation/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/config/Validation/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationCoESatellite/config/Validation/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/config/Validation/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationCoESatellite/deploy-prod-AutomationCoESatellite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/deploy-prod-AutomationCoESatellite.yml -------------------------------------------------------------------------------- /AutomationCoESatellite/deploy-test-AutomationCoESatellite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/deploy-test-AutomationCoESatellite.yml -------------------------------------------------------------------------------- /AutomationCoESatellite/deploy-validation-AutomationCoESatellite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationCoESatellite/deploy-validation-AutomationCoESatellite.yml -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/Adapters/CrmServiceAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/Adapters/CrmServiceAdapter.cs -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/Adapters/ICrmServiceAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/Adapters/ICrmServiceAdapter.cs -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/Adapters/TraceLogAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/Adapters/TraceLogAdapter.cs -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/App.config -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/AutomationKIT_Main.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/AutomationKIT_Main.csproj -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/AutomationKIT_Main.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/AutomationKIT_Main.sln -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/AutomationKit_Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/AutomationKit_Main.Designer.cs -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/AutomationKit_Main.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/AutomationKit_Main.settings -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/ExtensionClasses/MainPackageExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/ExtensionClasses/MainPackageExt.cs -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/Input.xml -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PackageExtensions/IPackageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PackageExtensions/IPackageExtensions.cs -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PackageExtensions/PackageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PackageExtensions/PackageExtensions.cs -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PackageImportExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PackageImportExtension.cs -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/AutomationKit-SampleData.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/AutomationKit-SampleData.zip -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/CSS/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/CSS/common.css -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/HTML/Default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/HTML/Default.htm -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/body_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/body_back.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/ca_back_home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/ca_back_home.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/content_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/content_back.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/ct_back_orig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/ct_back_orig.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/footer_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/footer_back.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/header_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/header_back.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/nav_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/nav_back.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/nav_list_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/nav_list_back.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/top_item_sel_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/EndHtml/Images/top_item_sel_bg.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/WelcomeHtml/CSS/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/WelcomeHtml/CSS/common.css -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/WelcomeHtml/HTML/Default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/WelcomeHtml/HTML/Default.htm -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/WelcomeHtml/Images/body_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/WelcomeHtml/Images/body_back.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/WelcomeHtml/Images/footer_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/WelcomeHtml/Images/footer_back.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/WelcomeHtml/Images/header_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/WelcomeHtml/Images/header_back.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/WelcomeHtml/Images/nav_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/Content/en-us/WelcomeHtml/Images/nav_back.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/ImportConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/ImportConfig.xml -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/autocoe_desktopflowactions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/autocoe_desktopflowactions.csv -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/autocoe_flowsessiontraces.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/autocoe_flowsessiontraces.csv -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/PkgAssets/manifest.ppkg.json: -------------------------------------------------------------------------------- 1 | // Note: comments are removed at build time. 2 | { 3 | "SchemaVersion": "1.0" 4 | } -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/TermsOfUse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/TermsOfUse.html -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/Tests/AutomationKITPackage_Main_Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/Tests/AutomationKITPackage_Main_Tests/Usings.cs -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/[Content_Types].xml -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/constants/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/constants/Constants.cs -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Main/logo32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Main/logo32x32.png -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/AutomationKIT_Satellite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/AutomationKIT_Satellite.csproj -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/AutomationKIT_Satellite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/AutomationKIT_Satellite.sln -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/AutomationKit_Satellite.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/AutomationKit_Satellite.Designer.cs -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/AutomationKit_Satellite.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/AutomationKit_Satellite.settings -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/Input.xml -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PackageImportExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PackageImportExtension.cs -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/Content/en-us/EndHtml/CSS/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/Content/en-us/EndHtml/CSS/common.css -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/Content/en-us/EndHtml/HTML/Default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/Content/en-us/EndHtml/HTML/Default.htm -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/Content/en-us/EndHtml/Images/body_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/Content/en-us/EndHtml/Images/body_back.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/Content/en-us/EndHtml/Images/nav_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/Content/en-us/EndHtml/Images/nav_back.gif -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/Content/en-us/WelcomeHtml/CSS/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/Content/en-us/WelcomeHtml/CSS/common.css -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/Content/en-us/WelcomeHtml/HTML/Default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/Content/en-us/WelcomeHtml/HTML/Default.htm -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/ImportConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/ImportConfig.xml -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/autocoe_desktopflowactions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/autocoe_desktopflowactions.csv -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/PkgAssets/manifest.ppkg.json: -------------------------------------------------------------------------------- 1 | // Note: comments are removed at build time. 2 | { 3 | "SchemaVersion": "1.0" 4 | } -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/TermsOfUse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/TermsOfUse.html -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/[Content_Types].xml -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/logo32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/AutomationKITPackage_Satellite/logo32x32.png -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/PowershellScripts/AutomationCoEMain_1.0.20221102.1_managed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/PowershellScripts/AutomationCoEMain_1.0.20221102.1_managed.json -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/PowershellScripts/AutomationCoEMain_manifest.ppkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/PowershellScripts/AutomationCoEMain_manifest.ppkg.json -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/PowershellScripts/AutomationCoESatellite_1.0.20221102.1_managed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/PowershellScripts/AutomationCoESatellite_1.0.20221102.1_managed.json -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/PowershellScripts/AutomationCoESatellite_manifest.ppkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/PowershellScripts/AutomationCoESatellite_manifest.ppkg.json -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/PowershellScripts/Install_AutomationKit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/PowershellScripts/Install_AutomationKit.ps1 -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/PowershellScripts/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/PowershellScripts/build.ps1 -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/PowershellScripts/tests/Install_Main_Solution.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/PowershellScripts/tests/Install_Main_Solution.tests.ps1 -------------------------------------------------------------------------------- /AutomationKIT_Packages/Source/PowershellScripts/tests/build.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKIT_Packages/Source/PowershellScripts/tests/build.tests.ps1 -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/.gitignore -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/AutomationKitControlCenter.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/AutomationKitControlCenter.cdsproj -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/AppModuleSiteMaps/autocoe_CustomActions/AppModuleSiteMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/AppModuleSiteMaps/autocoe_CustomActions/AppModuleSiteMap.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/AppModules/autocoe_ControlCenterSetupWizard/AppModule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/AppModules/autocoe_ControlCenterSetupWizard/AppModule.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/AppModules/autocoe_ControlCenterSetupWizard/AppModule_managed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/AppModules/autocoe_ControlCenterSetupWizard/AppModule_managed.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/AppModules/autocoe_CustomActions/AppModule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/AppModules/autocoe_CustomActions/AppModule.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/AppModules/autocoe_CustomActions/AppModule_managed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/AppModules/autocoe_CustomActions/AppModule_managed.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_automationschedulecancellations_4ee7e.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_automationschedulecancellations_4ee7e.meta.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_automationscheduleholidays_fc949.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_automationscheduleholidays_fc949.meta.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_automationscheduler_85d36.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_automationscheduler_85d36.meta.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_automationscheduler_85d36_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_automationscheduler_85d36_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_automationscheduler_85d36_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_automationscheduler_85d36_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_byolsetupwizard_e3c3b.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_byolsetupwizard_e3c3b.meta.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_byolsetupwizard_e3c3b_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_byolsetupwizard_e3c3b_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_byolsetupwizard_e3c3b_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_byolsetupwizard_e3c3b_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_desktopflow_8c72c.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_desktopflow_8c72c.meta.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_desktopflow_8c72c_AdditionalUris0_identity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_desktopflow_8c72c_AdditionalUris0_identity.json -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_desktopflow_8c72c_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_desktopflow_8c72c_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_desktopflow_8c72c_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_desktopflow_8c72c_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_desktopflowlogsnew_adf7b.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_desktopflowlogsnew_adf7b.meta.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_desktopflowlogsnew_adf7b_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_desktopflowlogsnew_adf7b_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_desktopflowlogsnew_adf7b_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/CanvasApps/autocoe_desktopflowlogsnew_adf7b_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Controls/autocoe_PowerCAT.AutomationScheduler/ControlManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Controls/autocoe_PowerCAT.AutomationScheduler/ControlManifest.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Controls/autocoe_PowerCAT.AutomationScheduler/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Controls/autocoe_PowerCAT.AutomationScheduler/bundle.js -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Dashboards/{b560afc9-da29-ee11-bdf4-0022482b6e98}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Dashboards/{b560afc9-da29-ee11-bdf4-0022482b6e98}.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Dashboards/{e4af7cfa-da29-ee11-bdf4-0022482b6131}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Dashboards/{e4af7cfa-da29-ee11-bdf4-0022482b6131}.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationSchedule/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationSchedule/Entity.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationSchedule/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationSchedule/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleCancellations/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleCancellations/Entity.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleCancellations/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleCancellations/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleFlowSession/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleFlowSession/Entity.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleFlowSession/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleFlowSession/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleHoliday/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleHoliday/Entity.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleHoliday/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleHoliday/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleItem/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleItem/Entity.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleItem/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleItem/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleTriggers/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleTriggers/Entity.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleTriggers/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_AutomationScheduleTriggers/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_autocoe_ByolSetup/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_autocoe_ByolSetup/Entity.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_autocoe_ByolSetup/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Entities/autocoe_autocoe_ByolSetup/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Other/Customizations.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Other/Relationships.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Other/Relationships.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/BusinessUnit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/BusinessUnit.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/Owner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/Owner.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/SystemUser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/SystemUser.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/Team.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/Team.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/Workflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/Workflow.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/autocoe_AutomationSchedule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/autocoe_AutomationSchedule.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/autocoe_AutomationScheduleItem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/autocoe_AutomationScheduleItem.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/connectionreference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/connectionreference.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/flowsession.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Other/Relationships/flowsession.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Other/Solution.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Roles/Automation Schedule User.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Roles/Automation Schedule User.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Roles/Desktop Flows Support Analyst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Roles/Desktop Flows Support Analyst.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_BusinessHoursSign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_BusinessHoursSign -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_BusinessHoursSign.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_BusinessHoursSign.data.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_PowerAutomate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_PowerAutomate -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_PowerAutomate.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_PowerAutomate.data.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_auditsvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_auditsvg -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_auditsvg.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_auditsvg.data.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_calendar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_calendar -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_calendar.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_calendar.data.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_calendaricon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_calendaricon -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_calendaricon.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_calendaricon.data.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_monitor -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_monitor.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/WebResources/autocoe_monitor.data.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/Workflows/CloudRecon-AD5DD172-AE21-EF11-840A-6045BD579533.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/Workflows/CloudRecon-AD5DD172-AE21-EF11-840A-6045BD579533.json -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/customapis/cat_auditfetchapi/customapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/customapis/cat_auditfetchapi/customapi.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/pluginpackages/autocoe_AuditFetchAPI/pluginpackage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/pluginpackages/autocoe_AuditFetchAPI/pluginpackage.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/SolutionPackage/src/pluginpackages/autocoe_AutomationSchedulePlugin/pluginpackage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/SolutionPackage/src/pluginpackages/autocoe_AutomationSchedulePlugin/pluginpackage.xml -------------------------------------------------------------------------------- /AutomationKitControlCenter/config/Prod/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/config/Prod/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitControlCenter/config/Prod/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/config/Prod/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitControlCenter/config/Test/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/config/Test/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitControlCenter/config/Test/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/config/Test/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitControlCenter/config/Validation/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/config/Validation/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitControlCenter/config/Validation/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/config/Validation/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitControlCenter/deploy-prod-AutomationKitControlCenter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/deploy-prod-AutomationKitControlCenter.yml -------------------------------------------------------------------------------- /AutomationKitControlCenter/deploy-test-AutomationKitControlCenter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/deploy-test-AutomationKitControlCenter.yml -------------------------------------------------------------------------------- /AutomationKitControlCenter/deploy-validation-AutomationKitControlCenter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitControlCenter/deploy-validation-AutomationKitControlCenter.yml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/.gitignore -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/AutomationKitInstaller.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/AutomationKitInstaller.cdsproj -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/CanvasApps/autocoe_automationkitsetupwizard_49b35.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/CanvasApps/autocoe_automationkitsetupwizard_49b35.meta.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/CanvasApps/autocoe_automationkitsetupwizard_49b35_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/CanvasApps/autocoe_automationkitsetupwizard_49b35_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/CanvasApps/autocoe_automationkitsetupwizard_49b35_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/CanvasApps/autocoe_automationkitsetupwizard_49b35_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/CanvasApps/cr37a_fileattachmentcomponent_54206.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/CanvasApps/cr37a_fileattachmentcomponent_54206.meta.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/CanvasApps/cr37a_fileattachmentcomponent_54206_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/CanvasApps/cr37a_fileattachmentcomponent_54206_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/CanvasApps/cr37a_fileattachmentcomponent_54206_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/CanvasApps/cr37a_fileattachmentcomponent_54206_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/Entities/autocoe_AutomationKitSetupWizardMetadata/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/Entities/autocoe_AutomationKitSetupWizardMetadata/Entity.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/Entities/autocoe_AutomationKitSetupWizardMetadata/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/Entities/autocoe_AutomationKitSetupWizardMetadata/RibbonDiff.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/Other/Customizations.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/Other/Relationships.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/Other/Relationships.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/Other/Relationships/BusinessUnit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/Other/Relationships/BusinessUnit.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/Other/Relationships/Owner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/Other/Relationships/Owner.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/Other/Relationships/SystemUser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/Other/Relationships/SystemUser.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/Other/Relationships/Team.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/Other/Relationships/Team.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/Other/Solution.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_10330iconeBooksIntune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_10330iconeBooksIntune -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_10330iconeBooksIntune.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_10330iconeBooksIntune.data.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_CheckmarkCircle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_CheckmarkCircle -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_CheckmarkCircle.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_CheckmarkCircle.data.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_Dataverse_scalable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_Dataverse_scalable -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_Dataverse_scalable.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_Dataverse_scalable.data.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_DismissCircle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_DismissCircle -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_DismissCircle.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_DismissCircle.data.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_Info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_Info -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_Info.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_Info.data.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_MicrosoftTeamsimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_MicrosoftTeamsimage -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_MicrosoftTeamsimage.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_MicrosoftTeamsimage.data.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_PowerApps_scalable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_PowerApps_scalable -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_PowerApps_scalable.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_PowerApps_scalable.data.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_PowerAutomate_scalable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_PowerAutomate_scalable -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_PowerAutomate_scalable.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_PowerAutomate_scalable.data.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_Warning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_Warning -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_Warning.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_Warning.data.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_youtube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_youtube -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_youtube.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/WebResources/autocoe_youtube.data.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/Workflows/Fetchflowdetails-AC3B117D-E68B-EF11-8A69-7C1E5206606D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/Workflows/Fetchflowdetails-AC3B117D-E68B-EF11-8A69-7C1E5206606D.json -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/Workflows/ImportSolution-2AB90884-A87C-EF11-AC20-002248AF6B71.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/Workflows/ImportSolution-2AB90884-A87C-EF11-AC20-002248AF6B71.json -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/customapis/autocoe_SolutionExtractorAPI/customapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/customapis/autocoe_SolutionExtractorAPI/customapi.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/customapis/autocoe_SolutionImportAPI/customapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/customapis/autocoe_SolutionImportAPI/customapi.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/SolutionPackage/src/pluginpackages/autocoe_AutomationKitSetup/pluginpackage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/SolutionPackage/src/pluginpackages/autocoe_AutomationKitSetup/pluginpackage.xml -------------------------------------------------------------------------------- /AutomationKitInstaller/config/Prod/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/config/Prod/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitInstaller/config/Prod/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/config/Prod/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitInstaller/config/Test/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/config/Test/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitInstaller/config/Test/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/config/Test/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitInstaller/config/Validation/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/config/Validation/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitInstaller/config/Validation/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/config/Validation/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitInstaller/deploy-prod-AutomationKitInstaller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/deploy-prod-AutomationKitInstaller.yml -------------------------------------------------------------------------------- /AutomationKitInstaller/deploy-test-AutomationKitInstaller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/deploy-test-AutomationKitInstaller.yml -------------------------------------------------------------------------------- /AutomationKitInstaller/deploy-validation-AutomationKitInstaller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitInstaller/deploy-validation-AutomationKitInstaller.yml -------------------------------------------------------------------------------- /AutomationKitResources/Pipelines/export-solution-to-github-automation-kit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Pipelines/export-solution-to-github-automation-kit.yml -------------------------------------------------------------------------------- /AutomationKitResources/Release/Collateral/AutomationKit/Automation.Kit.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Collateral/AutomationKit/Automation.Kit.pbit -------------------------------------------------------------------------------- /AutomationKitResources/Release/Collateral/AutomationKit/AutomationKit-SampleData.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Collateral/AutomationKit/AutomationKit-SampleData.zip -------------------------------------------------------------------------------- /AutomationKitResources/Release/Collateral/AutomationKit/BYODL_FlowMonitoring_082023.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Collateral/AutomationKit/BYODL_FlowMonitoring_082023.pbit -------------------------------------------------------------------------------- /AutomationKitResources/Release/Collateral/AutomationKit/FlowMonitoring_082023.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Collateral/AutomationKit/FlowMonitoring_082023.pbit -------------------------------------------------------------------------------- /AutomationKitResources/Release/Collateral/AutomationKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Collateral/AutomationKit/README.md -------------------------------------------------------------------------------- /AutomationKitResources/Release/Collateral/AutomationKit/autocoe_desktopflowactions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Collateral/AutomationKit/autocoe_desktopflowactions.csv -------------------------------------------------------------------------------- /AutomationKitResources/Release/Collateral/AutomationKit/flowsessionview.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Collateral/AutomationKit/flowsessionview.sql -------------------------------------------------------------------------------- /AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES-202211.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES-202211.md -------------------------------------------------------------------------------- /AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES-202212.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES-202212.md -------------------------------------------------------------------------------- /AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES-202302.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES-202302.md -------------------------------------------------------------------------------- /AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES-202303.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES-202303.md -------------------------------------------------------------------------------- /AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES-202304.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES-202304.md -------------------------------------------------------------------------------- /AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES-202305.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES-202305.md -------------------------------------------------------------------------------- /AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES-202306.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES-202306.md -------------------------------------------------------------------------------- /AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Notes/AutomationKit/RELEASENOTES.md -------------------------------------------------------------------------------- /AutomationKitResources/Release/Pipelines/AutomationKit/create-github-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitResources/Release/Pipelines/AutomationKit/create-github-release.yml -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/.gitignore -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/AutomationKitScheduler.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/AutomationKitScheduler.cdsproj -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/AppModuleSiteMaps/ppcat_FlowScheduler/AppModuleSiteMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/AppModuleSiteMaps/ppcat_FlowScheduler/AppModuleSiteMap.xml -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/AppModuleSiteMaps/ppcat_FlowScheduler/AppModuleSiteMap_managed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/AppModuleSiteMaps/ppcat_FlowScheduler/AppModuleSiteMap_managed.xml -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/AppModules/ppcat_FlowScheduler/AppModule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/AppModules/ppcat_FlowScheduler/AppModule.xml -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/AppModules/ppcat_FlowScheduler/AppModule_managed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/AppModules/ppcat_FlowScheduler/AppModule_managed.xml -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/autocoe_schedulergridview_57723.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/autocoe_schedulergridview_57723.meta.xml -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/autocoe_schedulergridview_57723_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/autocoe_schedulergridview_57723_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/autocoe_schedulergridview_57723_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/autocoe_schedulergridview_57723_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/ppcat_schedulercalendarview_5b1bc.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/ppcat_schedulercalendarview_5b1bc.meta.xml -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/ppcat_schedulercalendarview_5b1bc_BackgroundImageUri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/ppcat_schedulercalendarview_5b1bc_BackgroundImageUri -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/ppcat_schedulercalendarview_5b1bc_DocumentUri.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/ppcat_schedulercalendarview_5b1bc_DocumentUri.msapp -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/CanvasManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/CanvasManifest.json -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/ComponentReferences.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/Connections/Connections.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/ControlTemplates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/ControlTemplates.json -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/Entropy/Entropy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/Entropy/Entropy.json -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/Entropy/checksum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/Entropy/checksum.json -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/Src/App.fx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/Src/App.fx.yaml -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/Src/Screen1.fx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/Src/Screen1.fx.yaml -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/Src/Themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/autocoe_schedulergridview_57723/Src/Themes.json -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/CanvasManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/CanvasManifest.json -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/ComponentReferences.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/Connections/Connections.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/ControlTemplates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/ControlTemplates.json -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/Entropy/Entropy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/Entropy/Entropy.json -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/Entropy/checksum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/Entropy/checksum.json -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/Src/App.fx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/Src/App.fx.yaml -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/Src/Themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/Src/Themes.json -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/pkgs/icon_2.5.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/CanvasApps/src/ppcat_schedulercalendarview_5b1bc/pkgs/icon_2.5.0.xml -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/Controls/autocoe_PowerCAT.PADScheduleViewer/ControlManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/Controls/autocoe_PowerCAT.PADScheduleViewer/ControlManifest.xml -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/Controls/autocoe_PowerCAT.PADScheduleViewer/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/Controls/autocoe_PowerCAT.PADScheduleViewer/bundle.js -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/Controls/autocoe_PowerCAT.PADScheduleViewer/styles/calendar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/Controls/autocoe_PowerCAT.PADScheduleViewer/styles/calendar.module.css -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/Controls/autocoe_PowerCAT.PADScheduleViewer/styles/customstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/Controls/autocoe_PowerCAT.PADScheduleViewer/styles/customstyle.css -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/Other/Customizations.xml -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/Other/Solution.xml -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/WebResources/autocoe_PowerAutomate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/WebResources/autocoe_PowerAutomate -------------------------------------------------------------------------------- /AutomationKitScheduler/SolutionPackage/src/WebResources/autocoe_PowerAutomate.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/SolutionPackage/src/WebResources/autocoe_PowerAutomate.data.xml -------------------------------------------------------------------------------- /AutomationKitScheduler/config/Prod/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/config/Prod/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitScheduler/config/Prod/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/config/Prod/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitScheduler/config/Test/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/config/Test/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitScheduler/config/Test/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/config/Test/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitScheduler/config/Validation/customDeploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/config/Validation/customDeploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitScheduler/config/Validation/deploymentSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/config/Validation/deploymentSettings.json -------------------------------------------------------------------------------- /AutomationKitScheduler/deploy-prod-AutomationKitScheduler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/deploy-prod-AutomationKitScheduler.yml -------------------------------------------------------------------------------- /AutomationKitScheduler/deploy-test-AutomationKitScheduler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/deploy-test-AutomationKitScheduler.yml -------------------------------------------------------------------------------- /AutomationKitScheduler/deploy-validation-AutomationKitScheduler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKitScheduler/deploy-validation-AutomationKitScheduler.yml -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/001-Synapse Workspace Azure Setup/Synapse-with-managed-identity/NewIdentity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/001-Synapse Workspace Azure Setup/Synapse-with-managed-identity/NewIdentity.ps1 -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/001-Synapse Workspace Azure Setup/Synapse-with-managed-identity/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/001-Synapse Workspace Azure Setup/Synapse-with-managed-identity/readme.md -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/001-Synapse Workspace Azure Setup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/001-Synapse Workspace Azure Setup/readme.md -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/002- Synapse link Setup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/002- Synapse link Setup/readme.md -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/Automation Kit Desktop Flow Activity.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/Automation Kit Desktop Flow Activity.pbit -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/Scripts/flowsessionview.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/Scripts/flowsessionview.sql -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/images/232245432-930bc4bc-a895-4b35-8ad9-d39a2b7c87a0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/images/232245432-930bc4bc-a895-4b35-8ad9-d39a2b7c87a0.png -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/images/232245894-dc109c1d-af37-4ff6-b75b-1e72833bc7d6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/images/232245894-dc109c1d-af37-4ff6-b75b-1e72833bc7d6.png -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/images/233840286-273404a4-ae0e-44c7-b2dc-1eece45c2a4b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/images/233840286-273404a4-ae0e-44c7-b2dc-1eece45c2a4b.png -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/images/233945148-e2697341-40d5-4678-964e-7e3bf48c8531.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/images/233945148-e2697341-40d5-4678-964e-7e3bf48c8531.png -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/images/powerbi-template-parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/images/powerbi-template-parameters.png -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/003- Power BI Dashboard Setup/readme.md -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/ARMTemplate/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/ARMTemplate/azuredeploy.json -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/ARMTemplate/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/ARMTemplate/azuredeploy.parameters.json -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/ARMTemplate/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/ARMTemplate/metadata.json -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/Images/238124581-508dafd7-b274-4f86-bd47-0c16887bae65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/Images/238124581-508dafd7-b274-4f86-bd47-0c16887bae65.png -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/Images/Flowsession.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/Images/Flowsession.mp4 -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/Images/deploytoazure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/Images/deploytoazure.svg -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/readme.md -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/tests/ARMTemplate.Tests/ARMTemplate.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/tests/ARMTemplate.Tests/ARMTemplate.Tests.csproj -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/tests/ARMTemplate.Tests/ARMTemplate.Tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/tests/ARMTemplate.Tests/ARMTemplate.Tests.sln -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/tests/ARMTemplate.Tests/AzureSynapseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/tests/ARMTemplate.Tests/AzureSynapseTests.cs -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/tests/ARMTemplate.Tests/CostType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/AutomationKit_Flow_BYODL/tests/ARMTemplate.Tests/CostType.cs -------------------------------------------------------------------------------- /AutomationKit_Flow_BYODL/tests/ARMTemplate.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HOW_TO_CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/HOW_TO_CONTRIBUTE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /OFFICEHOURS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/OFFICEHOURS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /docs/private-preview-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/docs/private-preview-upgrade.md -------------------------------------------------------------------------------- /docs/walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/docs/walkthrough.md -------------------------------------------------------------------------------- /media/121772447-4ede5700-cb6d-11eb-91a7-fe41715fc431.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/media/121772447-4ede5700-cb6d-11eb-91a7-fe41715fc431.png -------------------------------------------------------------------------------- /media/121772469-661d4480-cb6d-11eb-8a24-1c53c8d9e8bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/media/121772469-661d4480-cb6d-11eb-8a24-1c53c8d9e8bd.png -------------------------------------------------------------------------------- /media/OfficeHours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/media/OfficeHours.png -------------------------------------------------------------------------------- /media/automation-center-of-excellence-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/media/automation-center-of-excellence-overview.png -------------------------------------------------------------------------------- /media/automation-kit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/media/automation-kit.svg -------------------------------------------------------------------------------- /media/automation-matutity-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/media/automation-matutity-model.png -------------------------------------------------------------------------------- /officehours.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/officehours.ics -------------------------------------------------------------------------------- /src/officehours/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/src/officehours/generate.js -------------------------------------------------------------------------------- /src/officehours/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/src/officehours/package-lock.json -------------------------------------------------------------------------------- /src/officehours/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powercat-automation-kit/HEAD/src/officehours/package.json --------------------------------------------------------------------------------