Archived from groups: microsoft.public.win2000.group_policy (More info?)
Is there a place in a group policy that will allow me to turn off simple file
sharing on our Windows XP computers?
Any help would be appreciated. I can't find anything except a registry
change to do it.
Thanks.
Archived from groups: microsoft.public.win2000.group_policy (More info?)
On Tue, 25 Jan 2005 21:03:05 -0800, "David K." <DavidK@discussions.microsoft.com> wrote:
>Is there a place in a group policy that will allow me to turn off simple file
>sharing on our Windows XP computers?
>Any help would be appreciated. I can't find anything except a registry
>change to do it.
>Thanks.
Archived from groups: microsoft.public.win2000.group_policy (More info?)
I understand that I can create a script to do this but i was wondering if
there was an option in a group policy that I could set instead of running the
script at logon.
Let me know.
Thanks, Dave
"Jerold Schulman" wrote:
> On Tue, 25 Jan 2005 21:03:05 -0800, "David K." <DavidK@discussions.microsoft.com> wrote:
>
> >Is there a place in a group policy that will allow me to turn off simple file
> >sharing on our Windows XP computers?
> >Any help would be appreciated. I can't find anything except a registry
> >change to do it.
> >Thanks.
>
> See tip 7286 in the 'Tips & Tricks' at http://www.jsiinc.com >
> Jerold Schulman
> Windows Server MVP
> JSI, Inc.
> http://www.jsiinc.com >
Archived from groups: microsoft.public.win2000.group_policy (More info?)
"davidk1" wrote:
> I understand that I can create a script to do this but i was
> wondering if
> there was an option in a group policy that I could set instead
> of running the
> script at logon.
> Let me know.
> Thanks, Dave
>
> "Jerold Schulman" wrote:
>
> > On Tue, 25 Jan 2005 21:03:05 -0800, "David K." <DavidK@discussions.microsoft.com> wrote:
> >
> > >Is there a place in a group policy that will allow me
> to turn off simple file
> > >sharing on our Windows XP computers?
> > >Any help would be appreciated. I can't find anything
> except a registry
> > >change to do it.
> > >Thanks.
> >
> > See tip 7286 in the 'Tips & Tricks' at http://www.jsiinc.com > >
> > Jerold Schulman
> > Windows Server MVP
> > JSI, Inc.
> > http://www.jsiinc.com > >
Hi,
I have the newest ADM’s and there isn’t a setting for this. In fact
there isn’t a setting for everything listed in Folder Options. Eg. No
GPO to show file extensions.
However, if you know the registry path you can create your own ADM to
do this.
Archived from groups: microsoft.public.win2000.group_policy (More info?)
By default that should be disabled when a XP Pro computer is joined to the
domain [see KB link below] . There is a security policy/security option that
you could try to configure. It is for " network access:sharing and security
model for local accounts ". Configure it to be classic -local users. You
won't find that on the W2K domain controller but if you logon to a known
secure XP Pro domain member as a domain admin and use the Group Policy edit
mmc snapin and browse to the domain level GPO you want to configure you can
do it that way and it should apply to XP Pro computers within the scope of
influence of the policy you modify. It may already be set to "classic"
already. --- Steve
Turning on and turning off Simple File Sharing
Simple File Sharing is always turned on in Windows XP Home Edition-based
computers. By default, the Simple File Sharing UI is turned on in Windows XP
Professional-based computers that are joined to a workgroup. ***Windows XP
Professional-based computers that are joined to a domain use only the
classic file sharing and security interface***. When you use the Simple File
Sharing UI (that is located in the folder's properties), both share and file
permissions are configured.
"David K." <DavidK@discussions.microsoft.com> wrote in message
news:03EF84DB-45E0-43CB-9442-0EC05E914F9C@microsoft.com...
> Is there a place in a group policy that will allow me to turn off simple
> file
> sharing on our Windows XP computers?
> Any help would be appreciated. I can't find anything except a registry
> change to do it.
> Thanks.
>
Archived from groups: microsoft.public.win2000.group_policy (More info?)
Is there a place in a group policy that will allow me to turn off simple file
sharing on our Windows XP computers?
Any help would be appreciated. I can't find anything except a registry
change to do it.
Thanks.
@echo off
If {%1}=={} @echo Syntax: NoSFS ComputerName1 [ComputerName2 ... ComputerNamen]&goto :EOF
setlocal
:Next
if {%1}=={} endlocal&goto :EOF
set computer=%1
shift
set computer=%computer:"=%
set key="\\%computer%\HKLM\SYSTEM\CurrentControlSet\Control\Lsa"
if /i "%computername%" EQU "%computer%" set key="HKLM\SYSTEM\CurrentControlSet\Control\Lsa"
@echo reg add %key% /v forceguest /t REG_DWORD /d 00000000 /f
reg add %key% /v forceguest /t REG_DWORD /d 00000000 /f
@echo.
goto :Next