-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuninstallAdminSystem.yml
77 lines (59 loc) · 1.82 KB
/
uninstallAdminSystem.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
- name: Uninstal all base software on a base admin level system
hosts: all
tasks:
- name: this will not be counted as a failure
command: /bin/false
ignore_errors: yes
- name: Ensure Flash Player Plugin is uninstalled via Chocolatey
win_chocolatey:
name: flashplayerplugin
state: absent
- name: this will not be counted as a failure
command: /bin/false
ignore_errors: yes
- name: Ensure Google Chrome is uninstalled via Chocolatey
win_chocolatey:
name: googlechrome
state: absent
- name: this will not be counted as a failure
command: /bin/false
ignore_errors: yes
- name: Ensure Adobe Reader is uninstalled via Chocolatey
win_chocolatey:
name: adobereader
state: absent
- name: this will not be counted as a failure
command: /bin/false
ignore_errors: yes
- name: Ensure VLC Player is uninstalled via Chocolatey
win_chocolatey:
name: vlc
state: absent
- name: this will not be counted as a failure
command: /bin/false
ignore_errors: yes
- name: Ensure Java SE is uninstalled via Chocolatey
win_chocolatey:
name: jdk8
state: absent
- name: this will not be counted as a failure
command: /bin/false
ignore_errors: yes
- name: Ensure Microsoft Silverlight is uninstalled via Chocolatey
win_chocolatey:
name: silverlight
state: absent
- name: this will not be counted as a failure
command: /bin/false
ignore_errors: yes
- name: Ensure Malwarebytes is uninstalled via Chocolatey
win_chocolatey:
name: malwarebytes
state: absent
- name: this will not be counted as a failure
command: /bin/false
ignore_errors: yes
- name: Ensure Office365 is uninstalled via Chocolatey
win_chocolatey:
name: office365proplus
state: absent