Lapas

ceturtdiena, 2014. gada 25. septembris

Group Policy ADM template for Internet Explorer Proxy Server settings


Create file and paste the code:

;----------------------------------------------------------------------------------------------
;IE_Proxy_Settings_AllBuilds.ADM
;------------------------------------------------------------------------------------------------
CLASS USER
CATEGORY "Windows Components"
CATEGORY "Internet Explorer"

 POLICY "Enable Proxy"
 EXPLAIN !!PVHelp
 KEYNAME "Software\Microsoft\Windows\CurrentVersion\Internet Settings"
  VALUENAME "ProxyEnable"
  VALUEON NUMERIC 1
  VALUEOFF NUMERIC 0
 END POLICY

 POLICY "Proxy Server"
 EXPLAIN !!ProxyServerHelp
 KEYNAME "Software\Microsoft\Windows\CurrentVersion\Internet Settings"
  PART "Proxy Server" EDITTEXT REQUIRED
  VALUENAME "ProxyServer"
  DEFAULT "192.168.0.254:8080"
 END PART
 END POLICY

 POLICY "Proxy ByPassList"
 EXPLAIN !!ProxyByPassList
 KEYNAME "Software\Microsoft\Windows\CurrentVersion\Internet Settings"
  PART "Proxy ByPassList" EDITTEXT REQUIRED
  VALUENAME "ProxyOverride"
  DEFAULT ".domain.com"
 END PART
 END POLICY

 END CATEGORY;
 END CATEGORY;
[strings]
PVHelp="Enable or Disable the Proxy"
ProxyServerHelp="Please type in the Proxy Server Address and include any port information. Example: 192.168.0.254:8080"
ProxyByPassList="Enter addresses separated by semicolon. To bypass local address use the format ;<local> for more info go to http://technet.microsoft.com/en-us/library/dd361953.aspx"


;------------------------------------------------------------------------------------------------
 

After loading the template using Add/Remove for Administrative Templates, you'll find under User > Admin Templates > Classic Administrative templates the three settings which can be used to define the proxy server.

Source: columbiabrain.blogspot.com

Check applied GPO for current user

Check which GPO are applied:

gpresult /r

Check applied GPO settings:

gpresult /v >>%userprofile%\Desktop\resutl.txt

ceturtdiena, 2014. gada 18. septembris

Unlock Autodesk USB installation media

You can unlock usb flash with Phison MPALL

MPALL_F1_7F00_DL17_v363_0C / Phison MPALL v3.63.0C-DL17
Start it, put your usb stick into your USB 3.0 port.
Click update, then settings.
Choose advance settings and load the ini file.
Click save, and ok on a pop-up window.
Close settings window by clicking on "x".
Click start, the process lasts for about a minute and it's done


Here is detailed instruction for different versions: whatrevitwants.blogspot.com

For newer versions you need to start flash drive into TESTMOD.
To do it you need to open caseing and find chip with 64 pins. Shorten 34x35 pins (for PS2251-03-Q chip) and plug into usb port. After few seconds release pins.


Start Phison MPALL:
Setting type - Basic Settings - New settings
1. Choose controller: PS2251-03;
2. Specify host port where flash drive is pluged in;
3. Do ISP - Select burner and firmware files;
4. Perform low level format;
5. specify partition mode - 3.

Save settings, close setting window, press update, then start. 

##################################################################
Flash drive information extractor:

Controller: Phison 2303 (2251-03)
Possible Memory Chip(s):
  Toshiba TH58NVG8T2JTA20
  Toshiba TH58TEG8T2JTA20
  Toshiba TH58TEG8T2JBA4C
  Toshiba TC58NVG7T2JTA00
  Toshiba TC58TEG7T2JTA00
Memory Type: TLC
Flash ID: 983AA892 7650
Chip F/W: 01.09.53
Firmware Date: 2013-11-15
ID_BLK Ver.: 1.2.74.0
MP Ver.: MPALL v3.72.0B
VID: 13FE
PID: 5200
Manufacturer:       
Product: USB DISK 3.0
Query Vendor ID:       
Query Product ID: 2303 PRAM     
Query Product Revision: 1.00
Physical Disk Capacity: 31009800192 Bytes
Windows Disk Capacity:  0 Bytes
Internal Tags: 2QAP-S8P4
USB Version: 2.00
Declared Power: 300 mA
ContMeas ID: F872-01-00


Working Burner + F/W ISP files: BN03V117M.BIN + FW03FF01V10953M_20131115.BIN

##################################################################
 
Here you can find pinouts for PS2251-03-Q: https://bitbucket.org/
Here you can find lates binaries for your chip: http://www.usbdev.ru/files/phison/
Here you can find instructions for Phison MPALL: http://www.usbdev.ru/
Here you can download Flash Drive Information Extractor: http://www.usbdev.ru/files/usbflashinfo/

trešdiena, 2014. gada 17. septembris

Create and configure room list for outlook 2013/365

At firs verify that Windows PowerShell can run scripts:
Get-ExecutionPolicy

If the value returned is anything other than RemoteSigned, you need to run:
Set-ExecutionPolicy RemoteSigned

Connect to online Exchange server run:
$LiveCred = Get-Credential 
and type the credentials of an cloud administrator account

Then run:
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection

After that run:
Import-PSSession $Session

When you are online check for existing Room List Distribution groups and  Room mailboxes:
Get-DistributionGroup | Where {$_.RecipientTypeDetails -eq "RoomList"} | Format-Table DisplayName,Identity,PrimarySmtpAddress
and
Get-Mailbox | Where-Object {$_.RecipientTypeDetails -eq "RoomMailbox"} | Format-Table DisplayName,Identity,PrimarySmtpAddress

Create new Room List Distribution group:
New-DistributionGroup -Name Building_nr1 -DisplayName "Buildings display name" –PrimarySmtpAddress building_nr1@yourdomain.com –RoomList

Create new Room Mailbox:
New-MailBox -UserPrincipalName room_nr1@yourdomain.com -Name "Room nr1" -Room

Add existing Room Mailboxes to Room List Distribution Group:
Add-DistributionGroupMember –Identity Building_nr1 -Member room_nr1@yourdomain.com

When you're finished using the server-side session, always disconnect Windows PowerShell by running the following command:
Remove-PSSession $Session

Detailed procedure described here:  Use Windows PowerShell in Exchange Online
and here:  Enable Room Finder with Room List Distribution Group

piektdiena, 2014. gada 5. septembris

Configure classic workspace for AutoCAD 2015


Solution 1:
Open the Customize User Interface dialog box (or type the command CUI).
Select the desired workspace or create a new one.
Use the plus symbol to open the Toolbars tree in the left window.
Drag the toolbars you want to the toolbars tree in the right window.
Click Apply and then click OK to close the configuration editor.

Solution 2:
The classic workspace can be imported from a previous version:
In the Ribbon - Manage Tab, click "Import" (or type command CUIIMPORT).
In the customization editor, click the Transfer Tab. The current configuraton file is in the right pane.
In the left pane, load the configuration file (acad.cuix) from AutoCAD 2014 or an earlier version
(C:\Program Files\Autodesk\AutoCAD 201X\UserDataCache\en-us\Support).
Under the workspace list in the left pane, drag and drop "AutoCAD Classic" to the workspace list in the right pane.
Click Apply and then click OK to close the configuration editor.

Source: http://knowledge.autodesk.com

Cannot resize full screen Remote Desktop Connection

To force full sreen press Ctrl+Alt+Break