NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Information Community Announcements v
« Previous 1 … 10 11 12 13 14 … 56 Next »
fix for network access + Interact w/desktop

 
  • 0 Vote(s) - 0 Average
fix for network access + Interact w/desktop
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#1
2007-10-16, 11:45 AM
here's a neat little util that lets you map network shares for the local service account..so you can keep the Local System Account + Interact with Desktop and still get to your network shares..Big Grin
UseShare
http://babgvant.com/files/folders/misc/entry6007.aspx

you have to go into the "Configure Shares For Network Service" service and change the logon to 'local system' account [click browse/advanced/find] and blank password for it to work with gbpvr service's logon...
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#2
2007-10-21, 04:14 AM (This post was last modified: 2007-10-22, 12:46 AM by UncleJohnsBand.)
pBS Wrote:here's a neat little util that lets you map network shares for the local service account..so you can keep the Local System Account + Interact with Desktop and still get to your network shares..Big Grin
UseShare
http://babgvant.com/files/folders/misc/entry6007.aspx

you have to go into the "Configure Shares For Network Service" service and change the logon to 'local system' account [click browse/advanced/find] and blank password for it to work with gbpvr service's logon...

I had to play around with this since it seemed interestnig....

I have a Buffalo Linkstation Live NAS server that allows me to setup shares with and without users and permissions.

When I don't have a share on the Buffalo set to use permissions I can access the share from gbpvr without a problem.

When I do have a share on the Buffalo set to use permissions I can not acces the share from gbpvr.

After playing around with this I finally figured out how to get this thing to work.....

First....I did change the Configure Shares For Network Service service and set it to a local account. I was confused by your directions above that indicated that you should click on browse/advanced/find.......You can't access those items unless you click on use a specific account.....So I just ignored those parts and just selected the use local account option.

The next hurdle was getting error messages in the event log from the service when I was trying to map the share that had permissions set.

I kept getting a "1312 has occurred - A specified logon session does not exist. It may already have been terminated." message.

Then I looked this error up on Google and found this page that pointed me in the right direction.

The instruction on the site to download the software provide this as a valid command line for the configuration:
\\server-name\share-name password /user:user-name /persistent:yes

What the article above showed was the following slightly different syntax:

\\server-name\share-name /user:computer-name\user-name password /persistent:yes

Using the second format the output from the service in the event log indicated that the command completed successfully....

And....I am now able to get to my permission protected shares via gbpvr. Big Grin
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
scb147
Offline

Posting Freak

Posts: 806
Threads: 77
Joined: Nov 2006
#3
2007-11-07, 09:54 PM
I installed as said on the useshare website, but I have no idea where to go from there. How do I access the network shares via the EWA with this?
Author of Weather (NPVR) & Weather2 (GBPVR)
il1019
Offline

Member

Posts: 63
Threads: 13
Joined: Dec 2006
#4
2007-11-29, 07:09 AM
I've been trying to get this working without luck. This is what I have.

<add key="server1" value='\\expo\Movies /Dean:expo\Dean darko /persistent:yes/>

what is server1 supposed to be? Is that where it gets mounted to? Right now i have the folder also mapped to the z:\ drive. If i change server1 to z will it get mapped there? please help.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#5
2007-12-08, 04:12 PM
il1019 Wrote:I've been trying to get this working without luck. This is what I have.

<add key="server1" value='\\expo\Movies /Dean:expo\Dean darko /persistent:yes/>

what is server1 supposed to be? Is that where it gets mounted to? Right now i have the folder also mapped to the z:\ drive. If i change server1 to z will it get mapped there? please help.

Here is a more step by step response.
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#6
2009-02-11, 02:09 PM
UJB: i found a better way to enable network shares that doesn't require software..Big Grin

it's so simple it's scary...Smile
make a batch file with the net use line you want to use...confirm in dos..
set that batch file up as a custom task.
run it from gbpvr menus from either local machine or pch or MVP...Done! Big Grin
you now have network access from PCH, MVP, and EWA...

any batch file run by gbpvr rec. service is also run under network service account, so in effect i'm just using recording service to do job of UseShare...
told ya it was scary-simple...Smile

i used logging redirection to save a log...don't even have to map a drive..
Code:
rem for blank password, use "echo.|net use etc.etc.."
echo ************************ > nmtnet.txt
net use >> nmtnet.txt 2<&1
echo ************************ >> nmtnet.txt
echo password|net use \\server\share /user:name  /persistent:yes >> nmtnet.txt 2<&1
echo ************************ >> nmtnet.txt
net use >> nmtnet.txt 2<&1

i think i posted this elsewhere, but i didn't realize it worked for EWA also..
thought you might wanna include in docs/wiki
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,768
Threads: 954
Joined: May 2006
#7
2009-08-04, 03:49 AM
I have written my own trivial simple service like UseShare. If you are interested in helping to test it let me know. C# source code will be available later.

Martin
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)



Possibly Related Threads…
Thread Author Replies Views Last Post
  Hulu Desktop Replacement dhgb256 49 27,835 2016-01-06, 07:30 PM
Last Post: dhgb256
  Windows Desktop/Sidebar Gadget with Recording Schedule cncb 0 1,771 2011-09-29, 12:49 PM
Last Post: cncb
  get drive temps from all computers on network pBS 6 2,240 2010-04-09, 11:06 PM
Last Post: pBS
  UK Listings - XMLTV Access to DIGIGUIDE systemshark 6 7,649 2008-06-14, 02:42 PM
Last Post: garymeds
  now CDAUDIO access from video library :) pBS 1 1,638 2008-01-01, 08:34 AM
Last Post: kayleigh
  GBPVRcli - access GB-PVR information from the command line Mister Slimm 84 24,933 2006-10-26, 03:50 PM
Last Post: Mister Slimm
  Setting Up SSH to protect your network psycik 6 3,672 2006-04-12, 09:16 PM
Last Post: groover km
  SSL enabled GBPVR web access? Interested? Networker 4 2,714 2005-06-16, 10:52 AM
Last Post: betlit
  GPVR PVR-150 / Dish Network Guide rampy 1 2,066 2005-06-02, 03:04 AM
Last Post: sub
  Tuning Microsoft Access KingArgyle 1 1,742 2005-02-11, 06:40 PM
Last Post: KingArgyle

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode