-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathTweaks.ini
More file actions
10486 lines (9909 loc) · 470 KB
/
Copy pathTweaks.ini
File metadata and controls
10486 lines (9909 loc) · 470 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[WindowsTelemetry]
Type=Group
Name=Telemetry & Error Reporting
Name_de=Telemetrie & Fehlerberichterstattung
Name_ja=テレメトリとエラー報告
Name_pl=Telemetria i raportowanie błędów
Name_tr=Telemetri & Hata Raporlama
Description=This group handles settings related to telemetry and error reporting in Windows.
Description_de=Diese Gruppe verwaltet Einstellungen im Zusammenhang mit Telemetrie und Fehlerberichterstattung in Windows.
Description_ja=このグループは、Windowsのテレメトリとエラー報告に関連する設定を扱います。
Description_pl=Ta grupa obsługuje ustawienia związane z telemetrią i raportowaniem błędów w systemie Windows.
Description_tr=Bu grup, Windows'taki telemetri ve hata raporlamasıyla ilgili ayarları yönetir.
Hint=None
[DisableTelemetry]
Type=Bundle
Name=Disable Telemetry
Name_de=Telemetrie deaktivieren
Name_ja=テレメトリを無効化
Name_pl=Wyłącz telemetrię
Name_tr=Telemetriyi Devre Dışı Bırak
Description=Disables telemetry collection on the system.
Description_de=Deaktiviert die Telemetriesammlung im System.
Description_ja=システム上のテレメトリ収集を無効にします。
Description_pl=Wyłącza zbieranie telemetrii w systemie.
Description_tr=Sistemde telemetri toplanmasını devre dışı bırakır.
Parent=WindowsTelemetry
Hint=Recommended
[DisallowTelemetry]
Type=GroupPolicy
Name=Disallow Telemetry
Name_de=Telemetrie verbieten
Name_ja=テレメトリを不許可
Name_pl=Zabroń telemetrii
Name_tr=Telemetriye İzin Verme
Description=Prevents the system from sending telemetry data to Microsoft.
Description_de=Verhindert, dass das System Telemetriedaten an Microsoft sendet.
Description_ja=システムがテレメトリデータをMicrosoftに送信するのを防ぎます。
Description_pl=Zapobiega wysyłaniu danych telemetrii do firmy Microsoft.
Description_tr=Sistemin telemetri verilerini Microsoft'a göndermesini engeller.
Parent=DisableTelemetry
Hint=None
WinVer=MinBuild:10000;WinEd:Ent
Key=HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection
Value=AllowTelemetry
Data=0
[DisableOptinNotify]
Type=GroupPolicy
Name=Disable Telemetry Opt-In Notification
Name_de=Benachrichtigung über Telemetrie-Opt-In deaktivieren
Name_ja=テレメトリ オプトイン通知を無効化
Name_pl=Wyłącz powiadomienia o opcjonalnej telemetrii
Name_tr=Telemetri Katılım Bildirimini Devre Dışı Bırakma
Description=Disables notifications that ask the user to opt-in to telemetry collection.
Description_de=Deaktiviert Benachrichtigungen, die den Benutzer fragen, ob er der Telemetriesammlung zustimmt.
Description_ja=テレメトリ収集へのオプトインをユーザーに求める通知を無効にします。
Description_pl=Wyłącza powiadomienia proszące użytkownika o zgodę na zbieranie telemetrii.
Description_tr=Kullanıcıdan telemetri toplamayı seçmesini isteyen bildirimleri devre dışı bırakır.
Parent=DisableTelemetry
Hint=None
WinVer=MinBuild:10000
Key=HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection
Value=DisableTelemetryOptInChangeNotification
Data=1
[DisableDiagtrackService]
Type=SystemService
Name=Disable Telemetry Service (DiagTrack-Listener)
Name_de=Telemetrie-Dienst deaktivieren (DiagTrack-Listener)
Name_ja=テレメトリサービス (DiagTrack-Listener) を無効化
Name_pl=Wyłącz usługę telemetrii (DiagTrack-Listener)
Name_tr=Telemetri Servisini Devre Dışı Bırak (DiagTrack-Listener)
Description=Disables the DiagTrack service that collects telemetry data.
Description_de=Deaktiviert den DiagTrack-Dienst, der Telemetriedaten sammelt.
Description_ja=テレメトリデータを収集するDiagTrackサービスを無効にします。
Description_pl=Wyłącza usługę DiagTrack, która zbiera dane telemetrii.
Description_tr=Telemetri verilerini toplayan DiagTrack hizmetini devre dışı bırakır.
Parent=DisableTelemetry
Hint=None
WinVer=MinBuild:7601
Service=DiagTrack
[DisableDiagtrackAutologger]
Type=Registry
Name=Disable AutoLogger-Diagtrack-Listener
Name_de=AutoLogger-Diagtrack-Listener deaktivieren
Name_ja=AutoLogger-Diagtrack-Listenerを無効化
Name_pl=Wyłącz AutoLogger-Diagtrack-Listener
Name_tr=AutoLogger-Diagtrack-Listener'ı Devre Dışı Bırakma
Description=Disables the auto-logger for the DiagTrack listener.
Description_de=Deaktiviert den Auto-Logger für den DiagTrack-Listener.
Description_ja=DiagTrackリスナーの自動ロガーを無効にします。
Description_pl=Wyłącza auto-loggera dla DiagTrack Listenera.
Description_tr=AutoLogger-Diagtrack-Listener için otomatik günlükleyiciyi devre dışı bırakır.
Parent=DisableTelemetry
Hint=None
WinVer=MinBuild:10000
Key=HKLM\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener
Value=Start
Data=0
[DisablePushService]
Type=SystemService
Name=Disable Push Service
Name_de=Push-Dienst deaktivieren
Name_ja=プッシュサービスを無効化
Name_pl=Wyłącz usługę push
Name_tr=Push Hizmetini Devre Dışı Bırak
Description=Disables the push notification service on the system.
Description_de=Deaktiviert den Push-Benachrichtigungsdienst im System.
Description_ja=システム上のプッシュ通知サービスを無効にします。
Description_pl=Wyłącza usługę powiadomień push w systemie.
Description_tr=Sistemdeki push bildirim hizmetini devre dışı bırakır.
Parent=DisableTelemetry
Hint=NotRecommended
WinVer=MinBuild:10000
Service=dmwappushservice
[DisableDeviceNameInTelemetry]
Type=GroupPolicy
Name=Don't AllowDeviceNameInTelemetry
Name_de=Gerätenamen in Telemetrie nicht zulassen
Name_ja=テレメトリにデバイス名を含めない
Name_pl=Nie pozwól na użycie nazwy urządzenia w telemetrii
Name_tr=Telemetride Cihaz Adına İzin Verme
Description=Prevents the device name from being sent as part of telemetry data.
Description_de=Verhindert, dass der Gerätename als Teil der Telemetriedaten gesendet wird.
Description_ja=テレメトリデータの一部としてデバイス名が送信されるのを防ぎます。
Description_pl=Zapobiega wysyłaniu nazwy urządzenia jako części danych telemetrii.
Description_tr=Telemetri verisi kapsamında cihaz adının gönderilmesini engeller.
Parent=DisableTelemetry
Hint=None
WinVer=MinBuild:17134
Key=HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection
Value=AllowDeviceNameInTelemetry
Data=0
[BlockDiagnosisData]
Type=ResourceAccess
Name=Block Diagnosis/AutoLogger Data Folder
Name_de=Blockiere Diagnose/AutoLogger-Datenordner
Name_ja=診断/AutoLoggerデータフォルダーをブロック
Name_pl=Blokuj folder danych diagnostycznych/AutoLogger
Name_tr=Diagnosis/AutoLogger Veri Klasörünü Engelle
Description=Blocks access to the folder where diagnosis and AutoLogger data are stored.
Description_de=Blockiert den Zugriff auf den Ordner, in dem Diagnose- und AutoLogger-Daten gespeichert sind.
Description_ja=診断データとAutoLoggerデータが保存されているフォルダーへのアクセスをブロックします。
Description_pl=Blokuje dostęp do folderu, w którym przechowywane są dane diagnostyczne i AutoLogger.
Description_tr=Tanı ve AutoLogger verilerinin saklandığı klasöre erişimi engeller.
Parent=DisableTelemetry
Hint=None
WinVer=MinBuild:10000
Path=%ProgramData%\Microsoft\Diagnosis\**
[LimitDiagtrack]
Type=GroupPolicy
Name=Limit DiagTrack Telemetry
Name_de=Telemetrie von DiagTrack begrenzen
Name_ja=DiagTrackテレメトリを制限
Name_pl=Ogranicz telemetrię DiagTrack
Name_tr=DiagTrack Telemetrisini Sınırla
Description=Limits the amount of telemetry data collected by the DiagTrack service.
Description_de=Begrenzt die Menge an Telemetriedaten, die vom DiagTrack-Dienst gesammelt werden.
Description_ja=DiagTrackサービスによって収集されるテレメトリデータの量を制限します。
Description_pl=Ogranicza ilość danych telemetrii zbieranych przez usługę DiagTrack.
Description_tr=DiagTrack hizmeti tarafından toplanan telemetri verisinin miktarını sınırlar.
Parent=DisableTelemetry
Hint=None
WinVer=MinBuild:10000
Key=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack
Value=DiagTrackAuthorization
Data=7
[LimitDiagtrack32]
Type=GroupPolicy
Name=Limit DiagTrack Telemetry (32-bit)
Name_de=Telemetrie von DiagTrack (32-Bit) begrenzen
Name_ja=DiagTrackテレメトリを制限 (32ビット)
Name_pl=Ogranicz telemetrię DiagTrack (32-bit)
Name_tr=DiagTrack Telemetrisini Sınırla (32-bit)
Description=Limits the amount of telemetry data collected by the 32-bit DiagTrack service.
Description_de=Begrenzt die Menge an Telemetriedaten, die vom 32-Bit-DiagTrack-Dienst gesammelt werden.
Description_ja=32ビットのDiagTrackサービスによって収集されるテレメトリデータの量を制限します。
Description_pl=Ogranicza ilość danych telemetrii zbieranych przez usługę DiagTrack (32-bit).
Description_tr=32-bit DiagTrack hizmeti tarafından toplanan telemetri verisinin miktarını sınırlar.
Parent=DisableTelemetry
Hint=None
WinVer=MinBuild:10000
Key=HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack
Value=DiagTrackAuthorization
Data=7
[DisableDataCollection]
Type=Registry
Name=Disable DataCollection
Name_de=Deaktivieren der Datensammlung
Name_ja=データ収集を無効化
Name_pl=Wyłącz zbieranie danych
Name_tr=Veri Toplamayı Devre Dışı Bırak
Description=Disables data collection on the system, including telemetry and diagnostic data.
Description_de=Deaktiviert die Datensammlung im System, einschließlich Telemetrie- und Diagnosedaten.
Description_ja=テレメトリや診断データを含む、システム上のデータ収集を無効にします。
Description_pl=Wyłącza zbieranie danych w systemie, w tym dane telemetrii i diagnostyczne.
Description_tr=Telemetri ve tanılama verileri dahil olmak üzere sistemdeki veri toplamayı devre dışı bırakır.
Parent=DisableTelemetry
Hint=None
WinVer=MinBuild:10000
Key=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection
Value=AllowTelemetry
Data=0
[LimitDiagnosticLogCollection]
Type=GroupPolicy
Name=Limit Diagnostic Log Collection
Name_de=Begrenzen der Sammlung von Diagnoselogs
Name_ja=診断ログの収集を制限
Name_pl=Ogranicz zbieranie dzienników diagnostycznych
Name_tr=Tanılama Günlüğü Toplamasını Sınırla
Description=Limits the collection of diagnostic logs in the system.
Description_de=Begrenzt die Sammlung von Diagnoselogs im System.
Description_ja=システム内での診断ログの収集を制限します。
Description_pl=Ogranicza zbieranie dzienników diagnostycznych w systemie.
Description_tr=Sistemdeki tanılama günlüklerinin toplanmasını sınırlar.
Parent=DisableTelemetry
Hint=None
WinVer=MinBuild:10000
Key=HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection
Value=LimitDiagnosticLogCollection
Data=1
[DisableDeviceCensusTask]
Type=TaskScheduler
Name=Device Census
Name_de=Gerätezählung
Name_ja=デバイスセンサス
Name_pl=Spis urządzeń
Name_tr=Cihaz Sayımı
Description=Disables the scheduled task that collects device data for census purposes.
Description_de=Deaktiviert die geplante Aufgabe, die Gerätedaten für Zensuszwecke sammelt.
Description_ja=センサス目的でデバイスデータを収集するスケジュールされたタスクを無効にします。
Description_pl=Wyłącza zaplanowane zadanie zbierające dane urządzeń do celów spisowych.
Description_tr=Cihaz verilerini sayım amacıyla toplayan zamanlanmış görevi devre dışı bırakır.
Parent=DisableTelemetry
Hint=None
WinVer=MinBuild:7601
Folder=\Microsoft\Windows\Device Information
Entry=*
[FwBlockDeviceCensus]
Type=Firewall
Name=Firewall Device Census
Name_de=Firewall Gerätezählung
Name_ja=ファイアウォール デバイスセンサス
Name_pl=Firewall - Spis urządzeń
Name_tr=Güvenlik Duvarı Cihaz Sayımı
Description=Blocks the device census process from sending data over the network.
Description_de=Blockiert den Gerätezählungsprozess, der Daten über das Netzwerk sendet.
Description_ja=デバイスセンサスプロセスがネットワーク経由でデータを送信するのをブロックします。
Description_pl=Blokuje proces spisu urządzeń przed wysyłaniem danych przez sieć.
Description_tr=Cihaz sayımı işleminin ağ üzerinden veri göndermesini engeller.
Parent=DisableTelemetry
Hint=None
WinVer=MinBuild:10000
Path=%SystemRoot%\system32\DeviceCensus.exe
Service=
[DisableOneSettingsDownloads]
Type=GroupPolicy
Name=Disable OneSettings Downloads
Name_de=OneSettings-Downloads deaktivieren
Name_ja=OneSettingsのダウンロードを無効化
Name_pl=Wyłącz pobieranie OneSettings
Name_tr=OneSettings İndirmelerini Devre Dışı Bırak
Description=Disables the download of OneSettings data.
Description_de=Deaktiviert das Herunterladen von OneSettings-Daten.
Description_ja=OneSettingsデータのダウンロードを無効にします。
Description_pl=Wyłącza pobieranie danych OneSettings.
Description_tr=OneSettings verilerinin indirilmesini devre dışı bırakır.
Parent=DisableTelemetry
Hint=None
WinVer=MinBuild:10000
Key=HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection
Value=DisableOneSettingsDownloads
Data=1
[DisableAppTelemetry]
Type=Bundle
Name=Disable Application Telemetry
Name_de=Anwendungs-Telemetrie deaktivieren
Name_ja=アプリケーションテレメトリを無効化
Name_pl=Wyłącz telemetrię aplikacji
Name_tr=Uygulama Telemetrisini Devre Dışı Bırak
Description=Disables telemetry data collection for applications.
Description_de=Deaktiviert die Sammlung von Telemetriedaten für Anwendungen.
Description_ja=アプリケーションのテレメトリデータ収集を無効にします。
Description_pl=Wyłącza zbieranie danych telemetrii dla aplikacji.
Description_tr=Uygulamalar için telemetri verisi toplamayı devre dışı bırakır.
Parent=WindowsTelemetry
Hint=Recommended
[DisableAppExperienceTasks]
Type=TaskScheduler
Name=Disable Application Experience Tasks
Name_de=Anwendungs-Erfahrung Aufgaben deaktivieren
Name_ja=アプリケーションエクスペリエンスタスクを無効化
Name_pl=Wyłącz zadania związane z doświadczeniem aplikacji
Name_tr=Uygulama Deneyimi Görevlerini Devre Dışı Bırak
Description=Disables scheduled tasks related to application experience.
Description_de=Deaktiviert geplante Aufgaben im Zusammenhang mit der Anwendungs-Erfahrung.
Description_ja=アプリケーションエクスペリエンスに関連するスケジュールされたタスクを無効にします。
Description_pl=Wyłącza zaplanowane zadania związane z doświadczeniem aplikacji.
Description_tr=Uygulama deneyimiyle ilgili zamanlanmış görevleri devre dışı bırakır.
Parent=DisableAppTelemetry
Hint=None
WinVer=MinBuild:6002
Folder=\Microsoft\Windows\Application Experience
Entry=*
[DisableAppExperienceService]
Type=SystemService
Name=Disable Application Experience Service
Name_de=Anwendungs-Erfahrung Dienst deaktivieren
Name_ja=アプリケーションエクスペリエンスサービスを無効化
Name_pl=Wyłącz usługę doświadczenia aplikacji
Name_tr=Uygulama Deneyimi Hizmetini Devre Dışı Bırak
Description=Disables the Application Experience service on the system.
Description_de=Deaktiviert den Anwendungs-Erfahrung-Dienst im System.
Description_ja=システム上のアプリケーションエクスペリエンスサービスを無効にします。
Description_pl=Wyłącza usługę doświadczenia aplikacji w systemie.
Description_tr=Sistemdeki Uygulama Deneyimi hizmetini devre dışı bırakır.
Parent=DisableAppTelemetry
Hint=None
WinVer=MinBuild:7601;MaxBuild:9600
Service=AeLookupSvc
[DisableAppcompatTelemetry]
Type=GroupPolicy
Name=Disable Application Impact Telemetry (AIT)
Name_de=Anwendungs-Auswirkungs-Telemetrie deaktivieren (AIT)
Name_ja=アプリケーション影響テレメトリ (AIT) を無効化
Name_pl=Wyłącz telemetrię wpływu aplikacji (AIT)
Name_tr=Uygulama Etkisi Telemetrisini Devre Dışı Bırak (AIT)
Description=Disables telemetry that collects data on how applications impact system performance.
Description_de=Deaktiviert die Telemetrie, die Daten darüber sammelt, wie Anwendungen die Systemleistung beeinflussen.
Description_ja=アプリケーションがシステムのパフォーマンスにどのように影響するかについてのデータを収集するテレメトリを無効にします。
Description_pl=Wyłącza telemetrię, która zbiera dane na temat wpływu aplikacji na wydajność systemu.
Description_tr=Uygulamaların sistem performansına etkisini toplayan telemetriyi devre dışı bırakır.
Parent=DisableAppTelemetry
Hint=None
WinVer=MinBuild:7601
Key=HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat
Value=AITEnable
Data=0
[DisableStepsRecorder]
Type=GroupPolicy
Name=Disable Steps Recorder (UAR)
Name_de=Schritte-Aufzeichner deaktivieren (UAR)
Name_ja=ステップ記録ツール (UAR) を無効化
Name_pl=Wyłącz rejestrator kroków (UAR)
Name_tr=Adım Kaydediciyi Devre Dışı Bırak (UAR)
Description=Disables the Steps Recorder, which records user actions on the system.
Description_de=Deaktiviert den Schritte-Aufzeichner, der Benutzeraktionen im System aufzeichnet.
Description_ja=システム上のユーザー操作を記録するステップ記録ツールを無効にします。
Description_pl=Wyłącza rejestrator kroków, który rejestruje działania użytkownika w systemie.
Description_tr=Kullanıcı eylemlerini kaydeden Adım Kaydedici'yi devre dışı bırakır.
Parent=DisableAppTelemetry
Hint=None
WinVer=MinBuild:7601
Key=HKLM\SOFTWARE\Policies\Microsoft\windows\AppCompat
Value=DisableUAR
Data=1
[DisableInventoryCollector]
Type=GroupPolicy
Name=Disable Inventory Collector Task
Name_de=Inventar-Sammler-Aufgabe deaktivieren
Name_ja=インベントリコレクタータスクを無効化
Name_pl=Wyłącz zadanie zbierania inwentaryzacji
Name_tr=Envanter Toplayıcı Görevini Devre Dışı Bırak
Description=Disables the inventory collector task for system inventory management.
Description_de=Deaktiviert die Inventar-Sammler-Aufgabe für das Systeminventar-Management.
Description_ja=システムインベントリ管理のためのインベントリコレクタータスクを無効にします。
Description_pl=Wyłącza zadanie zbierania inwentaryzacji dla zarządzania inwentarzem systemu.
Description_tr=Sistem envanteri yönetimi için envanter toplayıcı görevini devre dışı bırakır.
Parent=DisableAppTelemetry
Hint=None
WinVer=MinBuild:7601
Key=HKLM\SOFTWARE\Policies\Microsoft\windows\AppCompat
Value=DisableInventory
Data=1
[DisableCompattelrunner]
Type=ExecutionControl
Name=Disable CompatTelRunner.exe
Name_de=CompatTelRunner.exe deaktivieren
Name_ja=CompatTelRunner.exeを無効化
Name_pl=Wyłącz CompatTelRunner.exe
Name_tr=CompatTelRunner.exe'yi Devre Dışı Bırak
Description=Disables the CompatTelRunner.exe process that runs in the background.
Description_de=Deaktiviert den Prozess CompatTelRunner.exe, der im Hintergrund läuft.
Description_ja=バックグラウンドで実行されるCompatTelRunner.exeプロセスを無効にします。
Description_pl=Wyłącza proces CompatTelRunner.exe, który działa w tle.
Description_tr=Arka planda çalışan CompatTelRunner.exe işlemini devre dışı bırakır.
Parent=DisableAppTelemetry
Hint=None
WinVer=MinBuild:6002
Path=%SystemRoot%\System32\CompatTelRunner.exe
[FwBlockCompattelrunner]
Type=Firewall
Name=Firewall CompatTelRunner.exe
Name_de=Firewall für CompatTelRunner.exe
Name_ja=ファイアウォール CompatTelRunner.exe
Name_pl=Firewall dla CompatTelRunner.exe
Name_tr=Güvenlik Duvarı CompatTelRunner.exe
Description=Blocks the CompatTelRunner.exe process from accessing the network.
Description_de=Blockiert den Prozess CompatTelRunner.exe, der auf das Netzwerk zugreift.
Description_ja=CompatTelRunner.exeプロセスがネットワークにアクセスするのをブロックします。
Description_pl=Blokuje proces CompatTelRunner.exe przed uzyskaniem dostępu do sieci.
Description_tr=CompatTelRunner.exe işleminin ağa erişimini engeller.
Parent=DisableAppTelemetry
Hint=None
WinVer=MinBuild:10000
Path=%SystemRoot%\system32\compattelrunner.exe
Service=
[DisableDiagtrackrunner]
Type=ExecutionControl
Name=Disable DiagTrackRunner.exe
Name_de=DiagTrackRunner.exe deaktivieren
Name_ja=DiagTrackRunner.exeを無効化
Name_pl=Wyłącz DiagTrackRunner.exe
Name_tr=DiagTrackRunner.exe'yi Devre Dışı Bırak
Description=Disables the DiagTrackRunner.exe process that runs in the background for telemetry.
Description_de=Deaktiviert den DiagTrackRunner.exe-Prozess, der im Hintergrund für die Telemetrie läuft.
Description_ja=テレメトリのためにバックグラウンドで実行されるDiagTrackRunner.exeプロセスを無効にします。
Description_pl=Wyłącza proces DiagTrackRunner.exe, który działa w tle do zbierania telemetrii.
Description_tr=Telemetri amacıyla arka planda çalışan DiagTrackRunner.exe işlemini devre dışı bırakır.
Parent=DisableAppTelemetry
Hint=None
WinVer=MinBuild:7601;MaxBuild:9600
Path=%SystemRoot%\CompatTel\diagtrackrunner.exe
[DisableCeip]
Type=Bundle
Name=Disable CEIP
Name_de=CEIP deaktivieren
Name_ja=CEIPを無効化
Name_pl=Wyłącz CEIP
Name_tr=CEIP'i Devre Dışı Bırak
Description=Disables the Customer Experience Improvement Program (CEIP).
Description_de=Deaktiviert das Customer Experience Improvement Program (CEIP).
Description_ja=カスタマーエクスペリエンス向上プログラム (CEIP) を無効にします。
Description_pl=Wyłącza Program Ulepszania Doświadczeń Użytkownika (CEIP).
Description_tr=Müşteri Deneyimini Geliştirme Programı’nı (CEIP) devre dışı bırakır.
Parent=WindowsTelemetry
Hint=Recommended
[DisableCeipPolicyHklm]
Type=GroupPolicy
Name=Turn off CEIP
Name_de=CEIP ausschalten
Name_ja=CEIPをオフにする
Name_pl=Wyłącz CEIP
Name_tr=CEIP’i Kapat
Description=Turns off the Customer Experience Improvement Program for all users.
Description_de=Schaltet das Customer Experience Improvement Program für alle Benutzer aus.
Description_ja=すべてのユーザーに対してカスタマーエクスペリエンス向上プログラムをオフにします。
Description_pl=Wyłącza Program Ulepszania Doświadczeń Użytkownika dla wszystkich użytkowników.
Description_tr=CEIP’i tüm kullanıcılar için kapatır.
Parent=DisableCeip
Hint=None
WinVer=MinBuild:6002
Key=HKLM\SOFTWARE\Policies\Microsoft\SQMClient\Windows
Value=CEIPEnable
Data=0
[TurnOffCeip]
Type=Registry
Name=Disable CEIP
Name_de=CEIP deaktivieren
Name_ja=CEIPを無効化
Name_pl=Wyłącz CEIP
Name_tr=CEIP'i Devre Dışı Bırak
Description=Disables the Customer Experience Improvement Program on the system.
Description_de=Deaktiviert das Customer Experience Improvement Program im System.
Description_ja=システム上のカスタマーエクスペリエンス向上プログラムを無効にします。
Description_pl=Wyłącza Program Ulepszania Doświadczeń Użytkownika w systemie.
Description_tr=Müşteri Deneyimini Geliştirme Programı’nı (CEIP) devre dışı bırakır.
Parent=DisableCeip
Hint=None
WinVer=MinBuild:6002
Key=HKLM\Software\Microsoft\SQMClient\Windows
Value=CEIPEnable
Data=0
[DisableCeipUploads]
Type=Registry
Name=Disable CEIP Uploads
Name_de=CEIP-Uploads deaktivieren
Name_ja=CEIPのアップロードを無効化
Name_pl=Wyłącz przesyłanie danych CEIP
Name_tr=CEIP Yüklemelerini Devre Dışı Bırak
Description=Prevents uploading of Customer Experience Improvement Program data.
Description_de=Verhindert das Hochladen von Customer Experience Improvement Program-Daten.
Description_ja=カスタマーエクスペリエンス向上プログラムのデータのアップロードを防ぎます。
Description_pl=Zapobiega przesyłaniu danych Programu Ulepszania Doświadczeń Użytkownika.
Description_tr=Müşteri Deneyimini Geliştirme Programı verilerinin yüklenmesini engeller.
Parent=DisableCeip
Hint=None
WinVer=MinBuild:6002
Key=HKLM\Software\Microsoft\SQMClient
Value=UploadDisableFlag
Data=0
[DisableCeipTasks]
Type=TaskScheduler
Name=Disable all CEIP Tasks
Name_de=Alle CEIP-Aufgaben deaktivieren
Name_ja=すべてのCEIPタスクを無効化
Name_pl=Wyłącz wszystkie zadania CEIP
Name_tr=Tüm CEIP Görevlerini Devre Dışı Bırak
Description=Disables all tasks related to the Customer Experience Improvement Program.
Description_de=Deaktiviert alle Aufgaben im Zusammenhang mit dem Customer Experience Improvement Program.
Description_ja=カスタマーエクスペリエンス向上プログラムに関連するすべてのタスクを無効にします。
Description_pl=Wyłącza wszystkie zadania związane z Programem Ulepszania Doświadczeń Użytkownika.
Description_tr=CEIP ile ilgili tüm görevleri devre dışı bırakır.
Parent=DisableCeip
Hint=None
WinVer=MinBuild:6002
Folder=\Microsoft\Windows\Customer Experience Improvement Program
Entry=*
[DisableAutochkProxy]
Type=TaskScheduler
Name=Disable autochk SQM upload task
Name_de=Deaktivieren der autochk SQM-Upload-Aufgabe
Name_ja=autochk SQMアップロードタスクを無効化
Name_pl=Wyłącz zadanie SQM przesyłania autochk
Name_tr=autochk SQM Yükleme Görevini Devre Dışı Bırak
Description=Disables the scheduled autochk task that uploads CEIP data.
Description_de=Deaktiviert die geplante autochk-Aufgabe, die CEIP-Daten hochlädt.
Description_ja=CEIPデータをアップロードするスケジュールされたautochkタスクを無効にします。
Description_pl=Wyłącza zaplanowane zadanie autochk, które przesyła dane CEIP.
Description_tr=CEIP verilerini yükleyen zamanlanmış autochk görevini devre dışı bırakır.
Parent=DisableCeip
Hint=None
WinVer=MinBuild:6002
Folder=\Microsoft\Windows\Autochk
Entry=Proxy
[FwWsqmcons]
Type=Firewall
Name=Firewall SQM-Konsolidator
Name_de=Firewall SQM-Konsolidator
Name_ja=ファイアウォール SQM-Konsolidator
Name_pl=Firewall - Konsolidator SQM
Name_tr=Güvenlik Duvarı SQM-Konsolidator
Description=Blocks the SQM data collection process from accessing the network.
Description_de=Blockiert den SQM-Datensammelprozess, der auf das Netzwerk zugreift.
Description_ja=SQMデータ収集プロセスがネットワークにアクセスするのをブロックします。
Description_pl=Blokuje proces zbierania danych SQM przed uzyskaniem dostępu do sieci.
Description_tr=SQM veri toplama işleminin ağa erişmesini engeller.
Parent=DisableCeip
Hint=None
WinVer=MinBuild:10000
Path=%SystemRoot%\system32\wsqmcons.exe
Service=
[DisableIeCeip]
Type=GroupPolicy
Name=Disable IE CEIP
Name_de=IE CEIP deaktivieren
Name_ja=IE CEIPを無効化
Name_pl=Wyłącz IE CEIP
Name_tr=IE CEIP’i Devre Dışı Bırak
Description=Disables the Internet Explorer Customer Experience Improvement Program.
Description_de=Deaktiviert das Customer Experience Improvement Program für Internet Explorer.
Description_ja=Internet Explorerカスタマーエクスペリエンス向上プログラムを無効にします。
Description_pl=Wyłącza Program Ulepszania Doświadczeń Użytkownika dla Internet Explorera.
Description_tr=Internet Explorer için CEIP’i devre dışı bırakır.
Parent=DisableCeip
Hint=NotRecommended
WinVer=MinBuild:7601
Key=HKLM\SOFTWARE\Policies\Microsoft\Internet Explorer\SQM
Value=DisableCustomerImprovementProgram
Data=0
[DisableMessengerCeip]
Type=GroupPolicy
Name=Disable Live Messenger CEIP
Name_de=Live Messenger CEIP deaktivieren
Name_ja=Liveメッセンジャー CEIPを無効化
Name_pl=Wyłącz CEIP Live Messenger
Name_tr=Live Messenger CEIP’i Devre Dışı Bırak
Description=Disables the CEIP for Live Messenger.
Description_de=Deaktiviert das CEIP für Live Messenger.
Description_ja=LiveメッセンジャーのCEIPを無効にします。
Description_pl=Wyłącza CEIP dla Live Messengera.
Description_tr=Live Messenger için CEIP’i devre dışı bırakır.
Parent=DisableCeip
Hint=NotRecommended
WinVer=MinBuild:2600;MaxBuild:7601
Key=HKLM\SOFTWARE\Policies\Microsoft\Messenger\Client
Value=CEIP
Data=2
[DisableSiufCollectionUser]
Type=Registry
Name=Disable SIUF Collection (User)
Name_de=SIUF-Sammlung deaktivieren (Benutzer)
Name_ja=SIUFデータ収集を無効化 (ユーザー)
Name_pl=Wyłącz zbieranie SIUF (Użytkownik)
Name_tr=SIUF Toplamayı Devre Dışı Bırak (Kullanıcı)
Description=Disables the SIUF data collection for the user.
Description_de=Deaktiviert das SIUF-Datensammeln für den Benutzer.
Description_ja=ユーザーのSIUFデータ収集を無効にします。
Description_pl=Wyłącza zbieranie danych SIUF dla użytkownika.
Description_tr=Kullanıcı için SIUF veri toplamayı devre dışı bırakır.
Parent=DisableCeip
Hint=None
WinVer=MinBuild:10000
Key=HKCU\Software\Microsoft\Siuf\Rules
Value=NumberOfSIUFInPeriod
Data=0
[DisableSiufPeriodUser]
Type=Registry
Name=Disable SIUF Period (User)
Name_de=SIUF-Zeitraum deaktivieren (Benutzer)
Name_ja=SIUFの定期的収集を無効化 (ユーザー)
Name_pl=Wyłącz okres SIUF (Użytkownik)
Name_tr=SIUF İşlemini Devre Dışı Bırak (Kullanıcı)
Description=Disables the SIUF period collection for the user.
Description_de=Deaktiviert die SIUF-Zeitraum-Sammlung für den Benutzer.
Description_ja=ユーザーのSIUF定期的収集を無効にします。
Description_pl=Wyłącza zbieranie okresu SIUF dla użytkownika.
Description_tr=Kullanıcı için SIUF dönemsel toplamayı devre dışı bırakır.
Parent=DisableCeip
Hint=None
WinVer=MinBuild:10000
Key=HKCU\Software\Microsoft\Siuf\Rules
Value=PeriodInNanoSeconds
Data=0
[DisableSiufTasks]
Type=TaskScheduler
Name=Disable Feedback Task
Name_de=Feedback-Aufgabe deaktivieren
Name_ja=フィードバックタスクを無効化
Name_pl=Wyłącz zadanie opinii
Name_tr=Geri Bildirim Görevini Devre Dışı Bırak
Description=Disables the scheduled SIUF feedback task.
Description_de=Deaktiviert die geplante SIUF-Feedback-Aufgabe.
Description_ja=スケジュールされたSIUFフィードバックタスクを無効にします。
Description_pl=Wyłącza zaplanowane zadanie zbierania opinii SIUF.
Description_tr=Zamanlanmış SIUF geri bildirim görevini devre dışı bırakır.
Parent=DisableCeip
Hint=None
WinVer=MinBuild:10000
Folder=\Microsoft\Windows\Feedback\Siuf
Entry=*
[FwBlockDmclient]
Type=Firewall
Name=Firewall Feedback SIUF
Name_de=Firewall Feedback SIUF
Name_ja=ファイアウォールでSIUFフィードバックをブロック
Name_pl=Firewall - Feedback SIUF
Name_tr=Güvenlik Duvarı Geri Bildirim SIUF
Description=Blocks the SIUF feedback process from accessing the network.
Description_de=Blockiert den SIUF-Feedback-Prozess, der auf das Netzwerk zugreift.
Description_ja=SIUFフィードバックプロセスがネットワークにアクセスするのをブロックします。
Description_pl=Blokuje proces zbierania opinii SIUF przed uzyskaniem dostępu do sieci.
Description_tr=SIUF geri bildirim işleminin ağa erişmesini engeller.
Parent=DisableCeip
Hint=None
WinVer=MinBuild:10000
Path=%SystemRoot%\system32\dmclient.exe
Service=
[DisableFeedbackNotifications]
Type=GroupPolicy
Name=Do not Show Feedback Notifications
Name_de=Feedback-Benachrichtigungen nicht anzeigen
Name_ja=フィードバックの通知を表示しない
Name_pl=Nie pokazuj powiadomień o opinii
Name_tr=Geri Bildirim Bildirimlerini Gösterme
Description=Prevents the display of feedback notifications on the system.
Description_de=Verhindert die Anzeige von Feedback-Benachrichtigungen im System.
Description_ja=システム上でフィードバックの通知が表示されないようにします。
Description_pl=Zapobiega wyświetlaniu powiadomień o opinii w systemie.
Description_tr=Sistemde geri bildirim bildirimlerinin gösterilmesini engeller.
Parent=DisableCeip
Hint=None
WinVer=MinBuild:10000
Key=HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection
Value=DoNotShowFeedbackNotifications
Data=1
[DisableErrorReporting]
Type=Bundle
Name=Disable Error Reporting
Name_de=Fehlerberichterstattung deaktivieren
Name_ja=エラー報告を無効化
Name_pl=Wyłącz raportowanie błędów
Name_tr=Hata Bildirimini Devre Dışı Bırak
Description=Disables the Windows Error Reporting system.
Description_de=Deaktiviert das Windows Fehlerberichterstattungssystem.
Description_ja=Windowsエラー報告システムを無効にします。
Description_pl=Wyłącza system raportowania błędów systemu Windows.
Description_tr=Windows Hata Bildirimi sistemini devre dışı bırakır.
Parent=WindowsTelemetry
Hint=Recommended
[TurnOffErrorReporting]
Type=Registry
Name=Turn off Windows Error Reporting
Name_de=Windows Fehlerberichterstattung ausschalten
Name_ja=Windowsエラー報告をオフにする
Name_pl=Wyłącz raportowanie błędów w systemie Windows
Name_tr=Windows Hata Bildirimini Kapat
Description=Turns off the Windows Error Reporting system on the machine.
Description_de=Schaltet das Windows Fehlerberichterstattungssystem auf dem Computer aus.
Description_ja=マシン上のWindowsエラー報告システムをオフにします。
Description_pl=Wyłącza system raportowania błędów w systemie Windows na maszynie.
Description_tr=Makinedeki Windows Hata Bildirimi sistemini kapatır.
Parent=DisableErrorReporting
Hint=None
WinVer=MinBuild:6002
Key=HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting
Value=Disabled
Data=1
[BlockCrashdumpAutoapprove]
Type=GroupPolicy
Name=Block Auto Approval of Crash Dumps
Name_de=Automatische Genehmigung von Absturz-Dumps blockieren
Name_ja=クラッシュダンプの自動承認をブロック
Name_pl=Zablokuj automatyczną akceptację zrzutów awaryjnych
Name_tr=Çökme Dökümlerinin Otomatik Onayını Engelle
Description=Blocks the automatic approval of crash dumps.
Description_de=Blockiert die automatische Genehmigung von Absturz-Dumps.
Description_ja=クラッシュダンプの自動承認をブロックします。
Description_pl=Blokuje automatyczną akceptację zrzutów awaryjnych.
Description_tr=Çökme dökümlerinin otomatik olarak onaylanmasını engeller.
Parent=DisableErrorReporting
Hint=None
WinVer=MinBuild:10000
Key=HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting
Value=AutoApproveOSDumps
Data=0
[BlockErrorreportAdditionaldata]
Type=GroupPolicy
Name=Block Additional Error Reporting Data
Name_de=Zusätzliche Fehlerberichterstattungsdaten blockieren
Name_ja=エラー報告の追加データをブロック
Name_pl=Zablokuj dodatkowe dane raportowania błędów
Name_tr=Ek Hata Bildirimi Verilerini Engelle
Description=Blocks sending additional data along with error reports.
Description_de=Blockiert das Senden zusätzlicher Daten zusammen mit Fehlerberichten.
Description_ja=エラー報告とともに追加データを送信するのをブロックします。
Description_pl=Blokuje wysyłanie dodatkowych danych wraz z raportami błędów.
Description_tr=Hata raporlarıyla birlikte ek veri gönderilmesini engeller.
Parent=DisableErrorReporting
Hint=None
WinVer=MinBuild:10000
Key=HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting
Value=DontSendAdditionalData
Data=1
[TurnOffErrorReportingGpo]
Type=GroupPolicy
Name=Turn off Windows Error Reporting (GPO)
Name_de=Windows Fehlerberichterstattung (GPO) ausschalten
Name_ja=Windowsエラー報告をオフにする (GPO)
Name_pl=Wyłącz raportowanie błędów systemu Windows (GPO)
Name_tr=Windows Hata Bildirimini (GPO) kapatın
Description=Turns off the Windows Error Reporting system using Group Policy.
Description_de=Schaltet das Windows Fehlerberichterstattungssystem mithilfe der Gruppenrichtlinie aus.
Description_ja=グループポリシーを使用して、Windowsエラー報告システムをオフにします。
Description_pl=Wyłącza system raportowania błędów systemu Windows przy użyciu zasad grupy.
Description_tr=Grup İlkesi'ni kullanarak Windows Hata Bildirimi sistemini kapatır.
Parent=DisableErrorReporting
Hint=None
WinVer=MinBuild:6002
Key=HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting
Value=Disabled
Data=1
[DoNotReportErrors]
Type=GroupPolicy
Name=Do not Report Errors
Name_de=Fehler nicht melden
Name_ja=エラーを報告しない
Name_pl=Nie zgłaszaj błędów
Name_tr=Hataları Bildirme
Description=Disables the reporting of errors in Windows.
Description_de=Deaktiviert das Melden von Fehlern in Windows.
Description_ja=Windowsでのエラー報告を無効にします。
Description_pl=Wyłącza zgłaszanie błędów w systemie Windows.
Description_tr=Windows'ta hataların bildirilmesini devre dışı bırakır.
Parent=DisableErrorReporting
Hint=None
WinVer=MinBuild:2600;MaxBuild:3790
Key=HKLM\SOFTWARE\Policies\Microsoft\PCHealth\ErrorReporting
Value=DoReport
Data=0
[DisableErrorReportingService]
Type=SystemService
Name=Disable Error Reporting Service
Name_de=Fehlerberichterstattungsdienst deaktivieren
Name_ja=エラー報告サービスを無効化
Name_pl=Wyłącz usługę raportowania błędów
Name_tr=Hata Bildirim Hizmetini Devre Dışı Bırak
Description=Disables the Windows Error Reporting Service.
Description_de=Deaktiviert den Windows Fehlerberichterstattungsdienst.
Description_ja=Windowsエラー報告サービスを無効にします。
Description_pl=Wyłącza usługę raportowania błędów systemu Windows.
Description_tr=Windows Hata Bildirimi Hizmetini devre dışı bırakır.
Parent=DisableErrorReporting
Hint=None
WinVer=MinBuild:6002
Service=WerSvc
[DisableErrorReportingTasks]
Type=TaskScheduler
Name=Disable Error Reporting Tasks
Name_de=Fehlerberichterstattungsaufgaben deaktivieren
Name_ja=エラー報告タスクを無効化
Name_pl=Wyłącz zadania raportowania błędów
Name_tr=Hata Bildirimi Görevlerini Devre Dışı Bırak
Description=Disables scheduled tasks related to error reporting.
Description_de=Deaktiviert geplante Aufgaben im Zusammenhang mit der Fehlerberichterstattung.
Description_ja=エラー報告に関連するスケジュールされたタスクを無効にします。
Description_pl=Wyłącza zaplanowane zadania związane z raportowaniem błędów.
Description_tr=Hata bildirimiyle ilgili zamanlanmış görevleri devre dışı bırakır.
Parent=DisableErrorReporting
Hint=None
WinVer=MinBuild:6002
Folder=\Microsoft\Windows\Windows Error Reporting
Entry=*
[DisableErrorreportUi]
Type=Registry
Name=Disable Error Report UI
Name_de=Fehlerbericht-Benutzeroberfläche deaktivieren
Name_ja=エラー報告UIを無効化
Name_pl=Wyłącz interfejs użytkownika raportowania błędów
Name_tr=Hata Raporu Kullanıcı Arayüzünü Devre Dışı Bırak
Description=Disables the user interface for error reporting.
Description_de=Deaktiviert die Benutzeroberfläche für die Fehlerberichterstattung.
Description_ja=エラー報告のユーザーインターフェースを無効にします。
Description_pl=Wyłącza interfejs użytkownika do raportowania błędów.
Description_tr=Hata bildirimi için kullanıcı arayüzünü devre dışı bırakır.
Parent=DisableErrorReporting
Hint=NotRecommended
WinVer=MinBuild:6002
Key=HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting
Value=DontShowUI
Data=1
[FwBlockWermgr]
Type=Firewall
Name=Firewall Problem Reporting
Name_de=Firewall Problemberichterstattung
Name_ja=ファイアウォールで問題報告をブロック
Name_pl=Firewall - Raportowanie problemów
Name_tr=Güvenlik Duvarı Sorun Bildirimi
Description=Blocks the Problem Reporting process from accessing the network.
Description_de=Blockiert den Problemberichterstattungsprozess, der auf das Netzwerk zugreift.
Description_ja=問題報告プロセスがネットワークにアクセスするのをブロックします。
Description_pl=Blokuje proces raportowania problemów przed uzyskaniem dostępu do sieci.
Description_tr=Sorun Bildirme işleminin ağa erişmesini engeller.
Parent=DisableErrorReporting
Hint=None
WinVer=MinBuild:10000
Path=%SystemRoot%\system32\wermgr.exe
Service=
[DisableKernelCrashDumps]
Type=Bundle
Name=Disable Kernel Crash Dumps
Name_de=Kern-Absturz-Dumps deaktivieren
Name_ja=カーネルクラッシュダンプを無効化
Name_pl=Wyłącz zrzuty awaryjne jądra
Name_tr=Çekirdek Çökme Dökümlerini Devre Dışı Bırak
Description=Disables the collection of kernel crash dumps.
Description_de=Deaktiviert das Sammeln von Kernel-Absturz-Dumps.
Description_ja=カーネルクラッシュダンプの収集を無効にします。
Description_pl=Wyłącza zbieranie zrzutów awaryjnych jądra.
Description_tr=Çekirdek çökme dökümlerinin toplanmasını devre dışı bırakır.
Parent=WindowsTelemetry
Hint=NotRecommended
[DisableSystemCrashDumps]
Type=Registry
Name=Disable System Crash Dumps
Name_de=System-Absturz-Dumps deaktivieren
Name_ja=システムクラッシュダンプを無効化
Name_pl=Wyłącz zrzuty awaryjne systemu
Name_tr=Sistem Çökme Dökümlerini Devre Dışı Bırak
Description=Disables the collection of system crash dumps.
Description_de=Deaktiviert das Sammeln von System-Absturz-Dumps.
Description_ja=システムクラッシュダンプの収集を無効にします。
Description_pl=Wyłącza zbieranie zrzutów awaryjnych systemu.
Description_tr=Sistem çökmesi dökümlerinin toplanmasını devre dışı bırakır.
Parent=DisableKernelCrashDumps
Hint=NotRecommended
WinVer=MinBuild:2195
Key=HKLM\SYSTEM\CurrentControlSet\Control\CrashControl
Value=CrashDumpEnabled
Data=0
[OtherDiagnostics]
Type=Bundle
Name=Other Diagnostics
Name_de=Weitere Diagnosen
Name_ja=その他の診断
Name_pl=Inne diagnostyki
Name_tr=Diğer Tanılar
Description=This group includes various diagnostics options outside of standard telemetry.
Description_de=Diese Gruppe enthält verschiedene Diagnoseoptionen außerhalb der standardmäßigen Telemetrie.
Description_ja=このグループには、標準のテレメトリ以外のさまざまな診断オプションが含まれています。
Description_pl=Ta grupa zawiera różne opcje diagnostyczne poza standardową telemetrią.
Description_tr=Bu grup standart telemetri dışında çeşitli tanılama seçeneklerini içerir.
Parent=WindowsTelemetry
Hint=None
[TurnOffMsdt]
Type=GroupPolicy
Name=Turn off MSDT
Name_de=MSDT ausschalten
Name_ja=MSDTをオフにする
Name_pl=Wyłącz MSDT
Name_tr=MSDT'yi kapatın
Description=Disables the Microsoft Support Diagnostic Tool (MSDT).
Description_de=Deaktiviert das Microsoft Support Diagnostic Tool (MSDT).
Description_ja=Microsoftサポート診断ツール(MSDT)を無効にします。
Description_pl=Wyłącza narzędzie diagnostyczne Microsoft Support Diagnostic Tool (MSDT).
Description_tr=Microsoft Destek Tanılama Aracı'nı (MSDT) devre dışı bırakır.
Parent=OtherDiagnostics
Hint=None
WinVer=MinBuild:7601
Key=HKLM\SOFTWARE\Policies\Microsoft\Windows\ScriptedDiagnosticsProvider\Policy
Value=DisableQueryRemoteServer
Data=0
[TurnOffOnlineAssist]
Type=GroupPolicy
Name=Turn off Online Assist
Name_de=Online-Hilfe ausschalten
Name_ja=オンラインアシストをオフにする
Name_pl=Wyłącz pomoc online
Name_tr=Çevrimiçi Yardımı Kapatın
Description=Disables online assistance for troubleshooting.
Description_de=Deaktiviert die Online-Hilfe zur Fehlerbehebung.
Description_ja=トラブルシューティングのためのオンラインアシスタンスを無効にします。
Description_pl=Wyłącza pomoc online przy rozwiązywaniu problemów.
Description_tr=Sorun giderme için çevrimiçi yardımı devre dışı bırakır.
Parent=OtherDiagnostics
Hint=None
WinVer=MinBuild:6002;MaxBuild:7601
Key=HKLM\SOFTWARE\Policies\Microsoft\Assistance\Client\1.0
Value=NoOnlineAssist
Data=1
[DisableDiskHealthModelUpdates]
Type=GroupPolicy
Name=Do not Update Disk Health Model
Name_de=Disk-Gesundheitsmodell nicht aktualisieren
Name_ja=ディスク正常性モデルを更新しない
Name_pl=Nie aktualizuj modelu zdrowia dysku
Name_tr=Disk Sağlık Modeli Güncellenmesin
Description=Prevents updates to the disk health model.
Description_de=Verhindert Aktualisierungen des Disk-Gesundheitsmodells.
Description_ja=ディスク正常性モデルの更新を防止します。
Description_pl=Zapobiega aktualizacjom modelu zdrowia dysku.
Description_tr=Disk sağlık modelinin güncellenmesini engeller.
Parent=OtherDiagnostics
Hint=NotRecommended
WinVer=MinBuild:16299
Key=HKLM\SOFTWARE\Policies\Microsoft\Windows\StorageHealth
Value=AllowDiskHealthModelUpdates
Data=0
[DisableDiskdiagnosticDatacollector]
Type=TaskScheduler
Name=Disable DiskDiagnosticDataCollector
Name_de=DiskDiagnosticDataCollector deaktivieren
Name_ja=DiskDiagnosticDataCollectorを無効化
Name_pl=Wyłącz DiskDiagnosticDataCollector
Name_tr=DiskDiagnosticDataCollector'ı Devre Dışı Bırak
Description=Disables the scheduled disk diagnostic data collector task.
Description_de=Deaktiviert die geplante Aufgabe zum Sammeln von Festplatten-Diagnosedaten.