diff --git a/web/plugins/wato/inv_wlc_clients.py b/web/plugins/wato/inv_wlc_clients.py
deleted file mode 100644
index 64ea8825c20fc17072c4911eff446a72d96b780a..0000000000000000000000000000000000000000
--- a/web/plugins/wato/inv_wlc_clients.py
+++ /dev/null
@@ -1,72 +0,0 @@
-#!/usr/bin/python
-# -*- encoding: utf-8; py-indent-offset: 4 -*-
-
-removecolumns = [ 
-    ('ieee80211ucapable'     ,'802.11u capable'), 
-    ('aaaoverrideaclapplied' ,'AAA overide ACL applied'), 
-    ('aaaoverrideaclname'    ,'AAA overide ACL name'), 
-    ('aaarole'               ,'AAA role'), 
-    ('accessvlan'            ,'Access VLAN'), 
-    ('aclapplied'            ,'ACL applied'), 
-    ('aclname'               ,'ACL name'), 
-#    ('apmacaddress'          ,'AP MAC address'), 
-    ('aproammacaddress'      ,'AP roam MAC address'), 
-    ('associationmode'       ,'Association mode'), 
-    ('authentication'        ,'Authentication'),
-    ('authmode'              ,'Auth mode'), 
-#    ('channel'               ,'Channel'),
-    ('currenttxrateset'      ,'Current TX rate (MBit/s)'), 
-    ('datarateset'           ,'Data rate set'), 
-    ('dataswitching'         ,'Data switching'),
-#    ('devicetype'            ,'Device type'), 
-    ('hreapapauth'           ,'HREAP AP auth'), 
-    ('iftype'                ,'Interface type'), 
-#    ('ipaddress'             ,'IP address'), 
-    ('ipv6aclapplied'        ,'IPv6 ACL applied'), 
-    ('ipv6aclname'           ,'IPv6 ACL name'), 
-    ('logintime'             ,'Login time'), 
-    ('macaddress'            ,'MAC Addresse'), 
-    ('mdnsadvcount'          ,'mDNS adv count'), 
-    ('mdnsprofile'           ,'mDNS profile'), 
-    ('nacstate'              ,'NAC state'), 
-    ('policyname'            ,'Policy name'), 
-    ('posturestate'          ,'Posture state'), 
-    ('powersavemode'         ,'Power save mode'), 
-#    ('protocol'              ,'Protocol'), 
-    ('quarantinevlan'        ,'Quarantine VLAN'), 
-    ('reasoncode'            ,'Reason code'), 
-    ('redirecturl'           ,'Redirect URL'), 
-    ('securitytagid'         ,'Security tag ID'), 
-    ('sessionid'             ,'Session ID'), 
-#    ('ssid'                  ,'SSID'), 
-#    ('status'                ,'Status'),      
-    ('typekts'               ,'NEC KTS SIP client'), 
-#    ('uptime'                ,'Uptime'), 
-    ('userauthtype'          ,'User auth type'), 
-#    ('username'              ,'Username'), 
-    ('wgbmacaddress'         ,'WGB MAC address'), 
-    ('wgbstatus'             ,'WGB status'), 
-    ('wlanprofilename'       ,'WLAN profile name'),
-]
-
-register_rule('inventory', 'inv_parameters:inv_cisco_wlc_clients',
-    Dictionary(
-        title=_('Cisco WLC Client inventory'),
-        elements=[
-            ('disable',
-              FixedValue(True,
-                  title=_('disable inventory'),
-            )),
-            ('removecolumns',
-              ListChoice(
-                  title=_('list of columns to remove'),
-                  label=_('list of columns to remove'),
-                  help=_('remove these columns from inventory'),
-                  choices=removecolumns,
-                  default_value=[],
-            )),
-        ],
-    ),
-    match='dict',
-)
-