@Mike. No, just stand alone PK2cmd.exe and Pickit2v2.exe.

For what it's worth the config I use (in Proton but easily transposed)
Code:
	' internal clock 16MHz with 4xPLL = 64MHz
  $if _device = _18F26K22
  	Config_Start
  	  FOSC = INTIO67	   ; Internal oscillator block
  	  PLLCFG = On	       ; Oscillator multiplied by 4
  	  PRICLKEN = On	     ; Primary clock enabled
  	  FCMEN = OFF	       ; Fail-Safe Clock Monitor disabled
  	  IESO = OFF	       ; Oscillator Switchover mode disabled
  	  PWRTEN = On	       ; Power up timer enabled
  	  BOREN = On	       ; Brown-out Reset enabled and controlled by software (SBOREN is enabled)
  	  BORV = 285	       ; VBOR set to 2.85 V nominal
  	  WDTEN = OFF	       ; Watch dog timer is always disabled. SWDTEN has no effect.
  	  WDTPS = 32768	     ; 1:32768
  	  CCP2MX = PORTC1	   ; CCP2 input/output is multiplexed with RC1
  	  PBADEN = OFF	     ; PORTB<5:0> pins are configured as digital I/O on Reset
  	  CCP3MX = PORTB5	   ; P3A/CCP3 input/output is multiplexed with RB5
  	  HFOFST = On	       ; HFINTOSC output and ready status are not delayed by the oscillator stable status
  	  T3CMX = PORTC0	   ; T3CKI is on RC0
  	  P2BMX = PORTB5	   ; P2B is on RB5
  	  MCLRE = INTMCLR	   ; RE3 input pin enabled; MCLR disabled
  	  STVREN = On	       ; Stack full/underflow will cause Reset
  	  LVP = OFF	         ; Single-Supply ICSP disabled
  	  XINST = OFF	       ; Instruction set extension and Indexed Addressing mode disabled (Legacy mode)
  	  Debug = OFF	       ; Disabled
  	  Cp0 = OFF	         ; Block 0 (000800-003FFFh) not code-protected
  	  CP1 = OFF	         ; Block 1 (004000-007FFFh) not code-protected
  	  CP2 = OFF	         ; Block 2 (008000-00BFFFh) not code-protected
  	  CP3 = OFF	         ; Block 3 (00C000-00FFFFh) not code-protected
  	  CPB = OFF	         ; Boot block (000000-0007FFh) not code-protected
  	  CPD = OFF	         ; Data EEPROM not code-protected
  	  WRT0 = OFF	       ; Block 0 (000800-003FFFh) not write-protected
  	  WRT1 = OFF	       ; Block 1 (004000-007FFFh) not write-protected
  	  WRT2 = OFF	       ; Block 2 (008000-00BFFFh) not write-protected
  	  WRT3 = OFF	       ; Block 3 (00C000-00FFFFh) not write-protected
  	  WRTC = OFF	       ; Configuration registers (300000-3000FFh) not write-protected
  	  WRTB = OFF	       ; Boot Block (000000-0007FFh) not write-protected
  	  WRTD = OFF	       ; Data EEPROM not write-protected
  	  EBTR0 = OFF	       ; Block 0 (000800-003FFFh) not protected from table reads executed in other blocks
  	  EBTR1 = OFF	       ; Block 1 (004000-007FFFh) not protected from table reads executed in other blocks
  	  EBTR2 = OFF	       ; Block 2 (008000-00BFFFh) not protected from table reads executed in other blocks
  	  EBTR3 = OFF	       ; Block 3 (00C000-00FFFFh) not protected from table reads executed in other blocks
  	  EBTRB = OFF	       ; Boot Block (000000-0007FFh) not protected from table reads executed in other blocks
  	Config_End
  $endif