Popular recipes tagged "ironpython"http://code.activestate.com/recipes/tags/ironpython/2013-02-18T09:25:17-08:00ActiveState Code RecipesMovable button (Text)
2013-02-18T09:24:24-08:00greg zakharovhttp://code.activestate.com/recipes/users/4184115/http://code.activestate.com/recipes/578463-movable-button/
<p style="color: grey">
Text
recipe 578463
by <a href="/recipes/users/4184115/">greg zakharov</a>
(<a href="/recipes/tags/button/">button</a>, <a href="/recipes/tags/ironpython/">ironpython</a>).
</p>
<p>Just for fun. This IronPython script shows how you can create a form with movable button.</p>
MUICacheView (Text)
2013-02-18T09:25:17-08:00greg zakharovhttp://code.activestate.com/recipes/users/4184115/http://code.activestate.com/recipes/578462-muicacheview/
<p style="color: grey">
Text
recipe 578462
by <a href="/recipes/users/4184115/">greg zakharov</a>
(<a href="/recipes/tags/ironpython/">ironpython</a>, <a href="/recipes/tags/muicacheview/">muicacheview</a>, <a href="/recipes/tags/nirsofer/">nirsofer</a>).
</p>
<p>Do you like Nir Sofer's MUICacheView tool? Why do you not write own? This sample correctly work on WinXP but there is no problem to edit it for Win7.</p>
Product Key (Text)
2012-11-01T19:03:23-07:00greg zakharovhttp://code.activestate.com/recipes/users/4184115/http://code.activestate.com/recipes/578317-product-key/
<p style="color: grey">
Text
recipe 578317
by <a href="/recipes/users/4184115/">greg zakharov</a>
(<a href="/recipes/tags/ironpython/">ironpython</a>, <a href="/recipes/tags/productkey/">productkey</a>).
</p>
<p>IronPython script for retrieving MS products' keys. There is how to get Windows key in following example.</p>
ironpython script to Monitor Servers internal CPU temprature using WMI MSAcpi_ThermalZoneTemperature with e-mail alerting capability (Python)
2010-03-12T05:25:52-08:00mgarrana Garranahttp://code.activestate.com/recipes/users/4171135/http://code.activestate.com/recipes/577103-ironpython-script-to-monitor-servers-internal-cpu-/
<p style="color: grey">
Python
recipe 577103
by <a href="/recipes/users/4171135/">mgarrana Garrana</a>
(<a href="/recipes/tags/cputemprature/">cputemprature</a>, <a href="/recipes/tags/ironpython/">ironpython</a>, <a href="/recipes/tags/managementobjectsearcher/">managementobjectsearcher</a>, <a href="/recipes/tags/msacpi_thermalzonetemperature/">msacpi_thermalzonetemperature</a>, <a href="/recipes/tags/smtplib/">smtplib</a>, <a href="/recipes/tags/wmi/">wmi</a>).
</p>
<p>ironpython script. It reads a txt file called servers.txt where it contains server names each in a separate line . it executes the function remoteconnect on each server name , the function connects to the server and reads the internal CPU TEMP from the WMI class MSAcpi_ThermalZoneTemperature located in namespace \root\WMI
if internal CPU temp exceeds a certian Threshold , the function sends an alerting e-mail , it can also execute any other desired action using the same concept like sending an alerting sms</p>