Skip to content

Instantly share code, notes, and snippets.

@fraga
fraga / interfaces
Created June 14, 2011 19:18
/etc/network/interfaces example
iface eth0:1 inet static
address 192.168.1.5
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
iface eth0:2 inet static
address 192.168.1.10
netmask 255.255.255.0
@fraga
fraga / gist:1030298
Created June 16, 2011 21:14
Enable or disable WMI traffic in windows 7 firewall
To enable or disable WMI traffic using firewall UI
1.In the Control Panel, click Security and then click Windows Firewall.
2.Click Change Settings and then click the Exceptions tab.
3.In the Exceptions window, select the check box for Windows Management Instrumentation (WMI) to enable WMI traffic through the firewall. To disable WMI traffic, clear the check box.
You can enable or disable WMI traffic through the firewall at the command prompt.
To enable or disable WMI traffic at command prompt using WMI rule group
•Use the following commands at a command prompt. Type the following to enable WMI traffic through the firewall.
netsh advfirewall firewall set rule group="windows management instrumentation (wmi)" new enable=yes
@fraga
fraga / gist:1067295
Created July 6, 2011 14:04
changing user passwords in microsoft online exchange
$cred = Get-Credential
Set-MSOnlineUserPassword –Identity jane.dow@contoso.com –Password P@55word –ChangePasswordOnNextLogon $true –Credential $cred
@fraga
fraga / gist:1068426
Created July 6, 2011 21:47
How to connect to microsoft exchange online and retrieve info
public class ExchangePowerShell
{
public static PSCredential GetCredentials(string userName, string password)
{
var securePassword = new SecureString();
Array.ForEach(password.ToCharArray(), securePassword.AppendChar);
var cred = new PSCredential(userName, securePassword);
return cred;
}
@fraga
fraga / gist:1072951
Created July 8, 2011 22:12
how to connect to microsoft dynamics ax 2012 WCF Currency services using a create request
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CurrencyServiceExample.DAX.Services;
namespace CurrencyServiceExample
{
class Program
@fraga
fraga / gist:1078228
Created July 12, 2011 15:40
Updating userinfo database information AX 2012 after restoring contoso
update userinfo
set
networkdomain = 'YourDomain',
networkalias = 'YourAlias',
SID = 'YourSID'
where ID = 'Admin'
@fraga
fraga / gist:1078411
Created July 12, 2011 16:55
C# console command line utility to get user SID AX 2012
using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
using System.DirectoryServices;
namespace GetUserSID
{
/// <summary>
/// This class must work on a username and domainname, access active directory services
@fraga
fraga / gist:1187727
Created September 2, 2011 01:15
How to create an item using ItemServices and EcoResProductServices in AX 2012
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.ServiceModel.Description;
using System.Text;
using Tutorial.AIF.CreateItem.EcoResProductServices;
using Tutorial.AIF.CreateItem.InventItemServices;
namespace Tutorial.AIF.CreateItem
@fraga
fraga / EnableRemoteErrors.rss
Created September 8, 2011 03:16
Enabling remote errors in SRSS
1) Put this code in a file called EnableRemoteErrors.rss
Public Sub Main()
Dim P As New [Property]()
P.Name = "EnableRemoteErrors"
P.Value = True
Dim Properties(0) As [Property]
Properties(0) = P
Try
rs.SetSystemProperties(Properties)
@fraga
fraga / instagram.cs
Created November 19, 2012 04:10
Get all images from instagram (api v1)
do
{
if (webRequest == null && string.IsNullOrEmpty(nextPageUrl))
webRequest = HttpWebRequest.Create(String.Format("https://api.instagram.com/v1/tags/{0}/media/recent?client_id={1}", tagName, clientId));
else
webRequest = HttpWebRequest.Create(nextPageUrl);
var responseStream = webRequest.GetResponse().GetResponseStream();
Encoding encode = System.Text.Encoding.Default;