Installing PECL mods for PHP on IIS

Although PHP.net mentions there are no DLLs for PECL they can be found here windows.php.net/downloads/pecl/releases/ Find the module you need, select a version (I always opt for the most recent version that will work with my flavor of PHP). To figure out which version you need run the phpinfo() command on your server. In the […]

OIDs for detailed printer count on Kyocera (TaskAlfa 4550cn)

Using SNMPWalk I found and matched to following counters to the actual levels as reported by our Kyocera TaskAlfa 4550cn; OID=.1.3.6.1.4.1.1347.42.2.4.1.1.1.1.1, Type=Integer, Value=145436 Level 1  Printer OID=.1.3.6.1.4.1.1347.42.2.4.1.1.1.1.2, Type=Integer, Value=1038 Level 1  Copies OID=.1.3.6.1.4.1.1347.42.2.4.1.1.2.1.1, Type=Integer, Value=160866 Level 2  Printer OID=.1.3.6.1.4.1.1347.42.2.4.1.1.2.1.2, Type=Integer, Value=270  Level 2  Copies OID=.1.3.6.1.4.1.1347.42.2.4.1.1.3.1.1, Type=Integer, Value=66406 Level 3  Printer OID=.1.3.6.1.4.1.1347.42.2.4.1.1.3.1.2, Type=Integer, Value=860  Level 3  Copies OID=.1.3.6.1.4.1.1347.42.3.1.2.1.1.1.1, Type=Integer, Value=37963 Black-White Printer OID=.1.3.6.1.4.1.1347.42.3.1.2.1.1.1.2, Type=Integer, Value=0  Fax?  ?? OID=.1.3.6.1.4.1.1347.42.3.1.2.1.1.1.3, Type=Integer, Value=372708 Colour  Printer OID=.1.3.6.1.4.1.1347.42.3.1.2.1.1.2.1, Type=Integer, […]

Installing Lync 2013 IIS features via PowerShell

Based on my experiance with installing Lync 2013 you have to select a whole lot of features in IIS. I rarely like to just select all features in IIS as this is prone to making your server less secure. So I used this script; $features = (‘Web-Default-Doc’, ‘Web-Dir-Browsing’, ‘Web-Http-Errors’, ‘Web-Static-Content’, ‘Web-Http-Logging’, ‘Web-Log-Libraries’, ‘Web-Http-Tracing’, ‘Web-Stat-Compression’, ‘Web-Dyn-Compression’, […]