I have 2 series of IP.I want to make a domain controller in windows server 2003.all clients system are XP.I want to know can i make a domain server.if yes how its is possible ?
Ubuntu 9.1 runs quite slugglish on my old laptop from 2004. Slower than Windows XP that was on there.
It has 512mb RAM and probably 1.2ghz (can't remember) CPU.
I have turned off Visual Effects under Appearance Preferences.
Are there any other tricks to get better performance, or do I just need a better computer to try Ubuntu?
Thanks
My outlook fails when trying to download any message/attachment which is larger than 3Mb and will not download any more emails until I go into my internet email account and delete that message. It is then fine until another large email tries to download to Outlook.
This is happening on an XP machine with Outlook 2000 and a Windows 7 machine with Outlook 2003. I am running McAfee on both machines
I've heard of Wake-Up-On-LAN (well, I've seen it in the BIOS) but I've never been 100% how to work it. Would this do what I'm after, and if not - would anything else?
I'm using Windows 7, in case it matters..
You can skin Chrome, but how can I change the default blue top bar color in Chrome application shortcuts? I mean the thing that turns a web app into a pseudo desktop app, reachable via Page menu - Create application shortcut. For some reason it ignores my theme settings... I just want to turn it from light blue to dark blue or something on Windows.
Thanks!
I want to buy a domain name, create my website and create an email server. I have IIS7 with windows 7. Can anyone point me to a good tutorial on the internet?
I know the website hosting thing, but I am not getting any email server hosting tutorial.
Thanks in advance
Coders, I am building a VS 2010 extension and I am experimenting around some of the samples that came with the VS 2010 SDK.
One of the sample projects is called TextAdornment. In that project there is a weirdo class that looks like the following:
[Export(typeof(IWpfTextViewCreationListener))]
[ContentType("text")]
[TextViewRole(PredefinedTextViewRoles.Document)]
internal sealed class TextAdornment1Factory : IWpfTextViewCreationListener
While I was experimenting with this project, I tried to debug the project to see the flow of the program and I noticed that this class gets hit when I first start the debugging.
Now my question is the following: what makes this class being the first class to get called when VS starts? In other words, why this class gets active and it runs as of some code instantiate an object of this class type?
Here is the only two files in the sample project:
TextAdornment1Factory.cs
using System.ComponentModel.Composition;
using Microsoft.VisualStudio.Text.Editor;
using Microsoft.VisualStudio.Utilities;
namespace TextAdornment1
{
#region Adornment Factory
///
/// Establishes an to place the adornment on and exports the
/// that instantiates the adornment on the event of a 's creation
///
[Export(typeof(IWpfTextViewCreationListener))]
[ContentType("text")]
[TextViewRole(PredefinedTextViewRoles.Document)]
internal sealed class TextAdornment1Factory : IWpfTextViewCreationListener
{
///
/// Defines the adornment layer for the adornment. This layer is ordered
/// after the selection layer in the Z-order
///
[Export(typeof(AdornmentLayerDefinition))]
[Name("TextAdornment1")]
[Order(After = PredefinedAdornmentLayers.Selection, Before = PredefinedAdornmentLayers.Text)]
[TextViewRole(PredefinedTextViewRoles.Document)]
public AdornmentLayerDefinition editorAdornmentLayer = null;
/// <summary>
/// Instantiates a TextAdornment1 manager when a textView is created.
/// </summary>
/// <param name="textView">The <see cref="IWpfTextView"/> upon which the adornment should be placed</param>
public void TextViewCreated(IWpfTextView textView)
{
new TextAdornment1(textView);
}
}
#endregion //Adornment Factory
}
TextAdornment1.cs
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using Microsoft.VisualStudio.Text;
using Microsoft.VisualStudio.Text.Editor;
using Microsoft.VisualStudio.Text.Formatting;
namespace TextAdornment1
{
///
///TextAdornment1 places red boxes behind all the "A"s in the editor window
///
public class TextAdornment1
{
IAdornmentLayer _layer;
IWpfTextView _view;
Brush _brush;
Pen _pen;
ITextView textView;
public TextAdornment1(IWpfTextView view)
{
_view = view;
_layer = view.GetAdornmentLayer("TextAdornment1");
textView = view;
//Listen to any event that changes the layout (text changes, scrolling, etc)
_view.LayoutChanged += OnLayoutChanged;
_view.Closed += new System.EventHandler(_view_Closed);
//selectedText();
//Create the pen and brush to color the box behind the a's
Brush brush = new SolidColorBrush(Color.FromArgb(0x20, 0x00, 0x00, 0xff));
brush.Freeze();
Brush penBrush = new SolidColorBrush(Colors.Red);
penBrush.Freeze();
Pen pen = new Pen(penBrush, 0.5);
pen.Freeze();
_brush = brush;
_pen = pen;
}
void _view_Closed(object sender, System.EventArgs e)
{
MessageBox.Show(textView.Selection.IsEmpty.ToString());
}
/// <summary>
/// On layout change add the adornment to any reformatted lines
/// </summary>
private void OnLayoutChanged(object sender, TextViewLayoutChangedEventArgs e)
{
foreach (ITextViewLine line in e.NewOrReformattedLines)
{
this.CreateVisuals(line);
}
}
private void selectedText()
{
}
/// <summary>
/// Within the given line add the scarlet box behind the a
/// </summary>
private void CreateVisuals(ITextViewLine line)
{
//grab a reference to the lines in the current TextView
IWpfTextViewLineCollection textViewLines = _view.TextViewLines;
int start = line.Start;
int end = line.End;
//Loop through each character, and place a box around any a
for (int i = start; (i < end); ++i)
{
if (_view.TextSnapshot[i] == 'a')
{
SnapshotSpan span = new SnapshotSpan(_view.TextSnapshot, Span.FromBounds(i, i + 1));
Geometry g = textViewLines.GetMarkerGeometry(span);
if (g != null)
{
GeometryDrawing drawing = new GeometryDrawing(_brush, _pen, g);
drawing.Freeze();
DrawingImage drawingImage = new DrawingImage(drawing);
drawingImage.Freeze();
Image image = new Image();
image.Source = drawingImage;
//Align the image with the top of the bounds of the text geometry
Canvas.SetLeft(image, g.Bounds.Left);
Canvas.SetTop(image, g.Bounds.Top);
_layer.AddAdornment(AdornmentPositioningBehavior.TextRelative, span, null, image, null);
}
}
}
}
}
}
We have a very old server HP ML110 its giving hardware ( Power )trouble and we are hosting DHCP services on this on windows 2000 .
Now i would like to transfer all the DHCP data ( it has reserved IP ) from this old server to a new server which is win2003 .
How do i do ?
I have windows 7 installed. Then I installed ubuntu 10.04 desktop.
The default boot loader was changed into grub boot loader.
How do I change it back to default.
Hey ,,,
I have Dial up (slow) connection , and KIS(Kaspersky internet security) 2010 (For Windows 7) , I need offline databases to update KIS 2010 , Where Can I find that , a new databases ?!
Hi, here is an screenshot of my pen drive. The files are impossible to open, and the names have been replaced by strange characters. In Ubuntu is worst, the Windows system crash.
What can I do to recover my information?
I am trying to get Jakarta Connector to work on my Windows 2003 Box, with IIS 6. I downloaded the latest version of the connector. Whenever I try to access the redirector I get a "You are not authorized to view this page - HTTP Error 401.3" in my isapi_redirect log the last line is always
[debug] HttpFilterProc::jk_isapi_plugin.c (2079): [/jakarta/isapi_redirect.dll] is not a servlet url
Anyone have any ideas on what is going on and why I cant get this to work.
What's a good C and GDK+ 2 integrated development environment (IDE) for developing in Ubuntu?
Please state Pros and Cons for each suggestion.
Notes:
I'm used to using Visual C++ forWindows and C++
On Linux, I usually use gcc and vi (I'd want something friendlier than GDB)
Thanks
I have a new laptop that I intend to use both at home and at work. I happen to have a windows server setup with active directory at home, and I want to join the laptop to both domains. Is this possible?
Looking for Anti virus forwindows SBS 2003.
Read in related threads that NOD34 is a good option generally.
http://serverfault.com/questions/7/what-is-the-best-enterprise-virus-scanning-system
What is the best option considering we are running SBS 2003?
Also interested in decent free options which support SBS 2003.
I'd like to be able to SSH to my Ubuntu 10.04 office PC from the outside. I am thus thinking to start up an SSH daemon on the PC. What are the security issues, possible glitches, specific configuration settings, etc. I should be aware of?
In case it matters: this is essentially for my own use only, I don't think there will be other people using it; it's an Ubuntu 10.04 PC in a mostly Windows 7/Vista/XP environment.
Basically, my wifi network simply stopped working for no apparent reason. It doesn't appear in the list of the available networks anymore. I can see all my neighbors' networks, but not mine. It's as if it doesn't exist anymore. The internet connection (non-wifi), which goes through the same modem/router, is fine though.
I already had a similar problem about one year ago (see here: Wifi network SSID not visible ), just after buying this very modem. I finally got it to work after performing two factory resets and getting rid of the Cisco "Magic" software; but this time it's not working.
I use a linksys router-modem (WAG320N) which is directly connected (via network cable) to my desktop computer (Windows 7). I have (mainly) two devices that use the wifi network: my phone (Samsung Galaxy Nexus) and an Asus tablet (TF201, aka Transformer Prime). I also resurrected an old laptop computer (Dell, running Windows XP) to test that, and it doesn't see anything either (apart from the 20 other wifi networks, of course ^^).
This wifi network was working just fine and has been for about a year. I haven't touched the modem settings so I have no idea what's causing the problem.
I tried:
making my phone "forget" about my network, hoping it would see it again after that: no luck.
re-entering the network informations (SSID/password) manually on my phone: still no luck (says it's not in range)
exporting the modem configuration, resetting the modem (factory reset, via modem admin), restarting it, importing the configuration: nope.
factory reset, turning it off for 15 minutes, restarting, re-factory reset, and entering the configuration manually: still nothing.
Has anybody experienced something similar before?
Have you any suggestion to fix that?
Thanks in advance.
PS: to clear things up, here are the settings of my modem regarding wifi:
Basic wireless settings:
Configuration: manual
Radio Band: 2.4GHz Wireless
Network Mode: B/G/N-Mixed
SSID: s427
Channel Bandwidth: Wide - 40 MHz Channel
Wide Channel: 9 - 2.452GHz
Standard Channel: 11 - 2.462GHz
SSID Broadcast: Enable
Advanced Wireless Settings
AP Isolation: Disable
Authentication Type: Auto
Basic Rate: Default
Transmission Rate: Auto
N Transmission Rate: Auto
CTS Protection Mode: Disable
Beacon Interval: 100
DTIM Interval: 1
Fragmentation Threshold: 2346
RTS Threshold: 2346
I have a nokia mobile phone but I don't have nokia pc suit for ubuntu
But I have pc suit forwindows .
How can I use that setup for ubuntu or give me any other way to use internet
using nokia mobile
please.........
Don't remember this from earlier, but my mouse is lagging when I refresh specific websites in Chrome and Firefox. I can't observe such lags with Internet Explorer.
Here's a video i made
I tested with AIDA64 and sometimes noticed very little and short lags.
Here's a second video
Any thoughts?
Hardware And Software Information:
DELL Latitude E6420
Windows 7 64-Bit Enterprise
8GB of RAM
Razer DeathAdder Black Edition mouse
Firmware: 1.00
Driver version: 1.02
In Control Panel mouse, windows XP seems can't remember my cursor speed settings. I need to set it every time after restart. What could be wrong? Thanks.
I've got a pile of .swf files here that are static animations, and I'd like to find some way of playing them at half or quarter speed. Preferably one that doesn't rely on exploiting sloppy browser/antivirus software processor usage.
Is there some sort of Windows-compatible Flash player with this functionality? Preferably open source?
I have used Puttygen to create a public and a private key, and then is ready to let TortoiseHg on Windows 7 do a clone by going to
ssh:[email protected]/somecode
but there seems to be no where to add the private key to TortoiseHg?
The file is already some where on hard disk as somefile.ppk Does someone know how to add it?
I have downloaded the microsoft visual C++,In control panel I can see the software download but unable to find the location it got installed I uninstalled it many ways and default also I set the location but I see there are no files in it.
I installed that software from the following link.
http://www.microsoft.com/en-us/download/details.aspx?id=8279
Microsoft Visual C++ 2010
My system configurations
Windows 7
64 bit