I use Network List Manager API to set (using Delphi) the location type (home / work / public) of a specified network on Windows 7.

Now, everything is working fine, but is not perfect. I use the api to set network category (private/public); I use some registry tweaks to set private location type (home/work); I use some system file copy to update the Networl Location image/icon on View Active Networks window.

Now, the issue that I have, and I didn't find an answer is how to update (preview) icons from the Notification Area Overflow - This is the little window that popups when you click on network icon from notification area.

Here it is the Delphi snippets that I use.

unit NetLocations;

interface

uses
  Classes, SysUtils, Registry, WinProcs, NETWORKLIST_TLB, ActiveX;

type
  TNetLocationType =(nltHome, nltWork, nltPublic, nltDomain);
  TUpdNLMethod = (umToAllConnected, umByNLName, umByNLGUID);

{ ... }

implementation

{ ... }

procedure RegClearPrivateNLType(nlID: TGuid);
begin
  with TRegistry.Create do
  try
    RootKey := HKEY_LOCAL_MACHINE;
    if OpenKey('SOFTWARE\Microsoft\Windows\CurrentVersion\HomeGroup\NetworkLocations\Home', False) then
    begin
      if ValueExists(GUIDToString(nlID)) then DeleteValue(GUIDToString(nlID));
      CloseKey;
    end;
    if OpenKey('SOFTWARE\Microsoft\Windows\CurrentVersion\HomeGroup\NetworkLocations\Work', False) then
    begin
      if ValueExists(GUIDToString(nlID)) then DeleteValue(GUIDToString(nlID));
      CloseKey;
    end;
  finally
    Free;
  end;
end;

procedure RegSetPrivateNLType(nlName: string; nlID: TGuid; nlType: TNetLocationType);
var
  S1, S2: string;
begin
  with TRegistry.Create do
  try
    RootKey := HKEY_LOCAL_MACHINE;
    case nlType of
      nltHome:
        begin
          S1 := 'Home';
          S2 := 'house';
        end;
      nltWork:
        begin
          S1 := 'Work';
          S2 := 'office';
        end;
      nltPublic:
        begin
          S2 := 'bench';
        end;
    end;

    if nlType in [nltHome, nltWork] then
    begin
      if OpenKey('SOFTWARE\Microsoft\Windows\CurrentVersion\HomeGroup\NetworkLocations\'+S1, True) then
      begin
        WriteString(GUIDToString(nlID), nlName);
        CloseKey;
      end;
    end;

    CopyFile(PChar(Format('%s\NetworkList\Icons\StockIcons\%s_16.bin',[GetSystemDir, S2])),
      PChar(Format('%s\NetworkList\Icons\%s_16.bin',[GetSystemDir, GUIDToString(nlID)])), False);
    CopyFile(PChar(Format('%s\NetworkList\Icons\StockIcons\%s_24.bin',[GetSystemDir, S2])),
      PChar(Format('%s\NetworkList\Icons\%s_24.bin',[GetSystemDir, GUIDToString(nlID)])), False);
    CopyFile(PChar(Format('%s\NetworkList\Icons\StockIcons\%s_32.bin',[GetSystemDir, S2])),
      PChar(Format('%s\NetworkList\Icons\%s_32.bin',[GetSystemDir, GUIDToString(nlID)])), False);
    CopyFile(PChar(Format('%s\NetworkList\Icons\StockIcons\%s_48.bin',[GetSystemDir, S2])),
      PChar(Format('%s\NetworkList\Icons\%s_48.bin',[GetSystemDir, GUIDToString(nlID)])), False);
  finally
    Free;
  end;
end;



function SetVistaNetProfiles(NetLocName: string; NetLocGUID: TGUID;
  NewLocType: TNetLocationType; UpdMethod: TUpdNLMethod; var ErrStr: string): boolean;
var
  devNLM: INetworkListManager;
  devNetworks: IEnumNetworks;
  devNetwork: INetwork;

  lwValue: LongWord;
  nlName: string;
  nlId: TGUID;
  SetThis: boolean;
begin
  Result := False;
  try
    if CoCreateInstance(CLASS_NetworkListManager, nil, CLSCTX_ALL,
      IID_INetworkListManager, devNLM) = S_OK then
    begin
      try
        if UpdMethod = umToAllConnected then
          devNetworks := devNLM.GetNetworks(NLM_ENUM_NETWORK_CONNECTED)
        else
          devNetworks := devNLM.GetNetworks(NLM_ENUM_NETWORK_ALL);
        devNetworks.Next(1, devNetwork, lwValue);
        while Assigned(devNetwork) do
        begin
          nlName := devNetwork.GetName;
          nlId   := devNetwork.GetNetworkId;

          case UpdMethod of
            umToAllConnected: SetThis := True;
            umByNLName:       SetThis := (NetLocName = nlName);
            umByNLGUID:       SetThis := (NetLocGUID = nlId);
          end;

          if SetThis then
          begin
            RegClearPrivateNLType(nlID);
            RegSetPrivateNLType(nlName, nlID, NewLocType);
            case NewLocType of
              nltHome, nltWork:
                devNetwork.SetCategory(NLM_NETWORK_CATEGORY_PRIVATE);
              nltPublic:
                devNetwork.SetCategory(NLM_NETWORK_CATEGORY_PUBLIC);
              nltDomain: ;
            end;
          end;
          devNetworks.Next(1, devNetwork, lwValue);
        end;
      finally
        devNLM := nil; // Release the theme manager interface
      end;
    end
    else
      ErrStr := 'Failed to create instance';
    Result := True;
  except
    on E: Exception do
      ErrStr := E.Message;
  end;
end;


function ChangeLocationType(LocationName: string; NewType: TNetLocationType;
  var ErrStr: string): boolean;
begin
  Result := SetVistaNetProfiles(LocationName, GUID_NULL, NewType, umByNLName, ErrStr);
end;

end.
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.