treeB

Author



.

This is what I have to do now, since my 3-yr. ancient laptop computer is messed up, & I don’t have the $$ to buy an external hard drive. I need a whole groundbreaking new computer. I usually make 2 copies of my data & place it on blank DVD’s, but since my DVD drive & computer screen are messed up, I have no choice but to temporarily use these sites. I wonder sometimes, “What if this site is gone tomorrow?” You know how websites exchange every day. You never know when someone will shut down a website, & they won’t warn you, any.

Best answer:

Answer by Fluid
I would suggest someone well known. Mozy and Carbonite are both brilliant services.

What do you reflect? Answer not more than!

treeB

Tagged with: backupdataIt'sOnlinePrivaterelyingStoragetrustwebsites 

Windows security suite virus? help?


.

for the last week or so my wireless internet has been performing arts up, and then yesterday i came home and my desktop computer was not responding, and it looked like windows media player had tried to open? which no one uses that, so not sure why it would be open. then i got all kinds of pop ups for a security suite antivirus that we dont have. And anything i try to do, including notch task administrator it says “Attention cannot be executed. the file taskmgr.exe is infected. Do you want to activate your antivirus software now?”
It wont let me do anything online. I tried rebooting in safemode with networking so i may possibly run the home trend housecall thing, but i guess you need to be online for that so i tried running avg/spybot/adaware. but they didnt fix it. i unplugged the internet from it, so i may possibly plug it directly into my laptop since the wireless isnt working. So I’m not really sure what to do here now? help?

and btw taking it to a computer repair or someone else to fix it isn’t an option.
Obviousm – thank you for those instructions, but it says to download and install Malwarebytes program. will it be able to install and fix this without connecting to the internet? i can download it on a jumpdrive. but wont it need to update itself before running?

Best answer:

Answer by Obviousman
Yep, looks like you got one of those fake antivirus programs. They’re real pain. If you can’t or won’t take it in, you’ll need a bit of windows savoir-faire. Just follow this link, print out the instructions, and clean it by malwarebytes,

http://www.bleepingcomputer.com/virus-removal/remove-windows-security-suite

I would also hold a better antivirus solution than you are now by. Face it, there is a lot of nasty stuff out there. You cannot afford to go without a excellent antivirus program.

Add your own answer in the comments!

treeB

Tagged with: securitySuitevirusWindows 

how to read email headers


.
As an email administrator you will be challenged with making filters, blacklist, whitelist, and/or redirects that require an understanding of email headers. In their simplest form email headers are read by an email client to show the To, From, Date, and Subject of a message.

Message headers (From: and To:) differ from senders and recipients and I’d like to outline those differences so when you are confronted with making filters you don’t end up pulling your hair out trying to map out why a simple filter does not work. :)

  1. Why doesn’t my filter work?
  2. Headers and SMTP Envelope
  3. Read Email Headers
  4. Senders and Recipients

Why doesn’t my filter work?

The most common problem I see when questioned why a filter does not work is in the differences between the From: header and the sender. Here’s what usually happens. Worker receives an email they no longer want to receive from a certain email address. They question you to block email address user@spam_domain.com. So you make a filter to reject user@spam_domain.com. The next day rolls around and your filter is not working according to the worker. Why? The email reader (Outlook, Thunderbird, etc…) reads the From: header and not the Sender and the mail server filter you made is likely triggered on the sender address. Lets clarify how this is possible.

Headers and SMTP Envelope.

A excellent analogy of what is happening is in a written letter that is addressed to you on an envelope, yes I’m talking snail mail here…, but the letter inside the envelope is addressed to and from someone else. When an email is expected by your mail server it takes the letter out of the envelope and puts it in your inbox. Your email address may not be visible in the To: header and the original sender (or return address) may not be the same as the From: header. This is all perfectly legal in the email world.

The From: and To: headers are sent during the DATA command of the SMTP session and is viewed by the email reader (Outlook, Thunderbird, etc…) when the message is opened.

Since SMTP has this ability it’s able do things like mailing list and BCC. A mailing list will typically place the mailing list email address in the To: header, yet it still arrives in your inbox without you seeing your email address in the To: header. Probably the best example is BCC. When you BCC someone the BCC recipient is not built-in in the headers of the message only as a recipient. And this is all controlled by your email reader once you press the Send button.


Reading Email Headers.

After you press the Send button in your email client it has to make the message, and choose who the sender and recipients are. The creation of the message includes email headers, the body of the message, and any attachments. I’m not getting into how attachments are made as it involves explaining mime boundary headers and that’s out of the scope of this article.

Email Header example:

Subject: Weekly Report Update
To: cindy@domain.com, joe@domain.com
From: fred@domain.com
Date: Fri, 01 May 2009 10:08:12 -0400
X-headers: Discretionary information - Such as, Thunderbird 2.x

Body of message
.
The above example is in it’s simplest form, you will see many other headers in an email message, all of which are usually self explanatory.

Note, the “.” on a line by itself just not more than the ‘Body of the message’. The “.” on a line by itself is only needed during the SMTP session to tell the mail server that it’s expected all the DATA and can save the message for delivery. When the mail server saves a message in your inbox it may not include the “.” as it’s not required by an email client to read the message.

The above example only shows what an email client will make after carriage a message. The mail server will also add headers to the message or can modify headers as needed. Here’s an example after a message passed from an email client through two mail servers.

Expected: From Domain.com (123.123.123.123) to remote_mail.com
Expected: From Email client (192.168.1.5) to local Mail Server Domain.com
Subject: Weekly Report Update
To: cindy@domain.com, joe@domain.com
From: fred@domain.com
Date: Fri, 01 May 2009 10:08:12 -0400
MIME-Version: 1.0
X-headers: Discretionary information – Such as, Thunderbird 2.x

Body of message

Each time a message is passed from one mail server to another a Expected: header is added to the top of the message identifying the mail server that delivered the message. Some email clients do not show the expected header when you use the option to view headers. Ideally to see all headers you should view the message file on the mail server. Use a text editor to view the message.

When making filters you can parse Expected: headers but only if the Expected: header exist, meaning it’s already passed through one mail server. I’ve seen cases where mail admins try to filter on the Expected: header of itself and usually that’s not possible.

Message Header Formats.

The format of the email headers are critical. The order of the headers are not critical, other than the Expected: header, which is always placed at the top of the message by the last mail server that delivered it.

In order for an email header to be consider an email header it must have a colon at the end and it must be before the message body. The header section of the message will always have one header on each line. A blank line or enter starts the body of the message.


Senders and Recipients.

The SMTP protocol has some flexibility that is not always obvious on the surface. Always consider the sender, recipient, From:, and To: headers when making filters and you should save yourself some troubleshooting steps later on.

REFERENCES
http://www.mailserverblog.com/2009/05/how-to-read-email-headers.html

Check it out:Command Center SkyHi

treeB

Tagged with: emailheadersread 

.

i am getting tons of popups i am running norton11 windows defender yahoo tool bar. when i run scan on yahoo tool bar it found 26 adware viruses but when i try to remove them it says i need admin rights i am logged in as admin.. so what can i do

Best answer:

Answer by Justin
restart your computer and pres f8 a whole bunch of time and then click start in safemode and no matter what u are you will be able to remove the infections.

Add your own answer in the comments!

treeB

Tagged with: AdminadministrativeadwaredetectedRemoverightsscansighned 

PowerShell Graphical Help


.

PowerShell is cool, isn’t it? I absolutely like it.

But there was a downside. By the help function within the PowerShell prompt is hard to read not to mention it can scroll your screen reasonably a bit.

So instead of by the help function within PowerShell, the PowerShell guys of Microsoft have made a Graphical Help File.

It contains just the same information as the help within PowerShell when by the -detailed switch, but it comes with some definate advantages:
– fully searchable
– graphical
– seperate window so you can a clear eye on your code

A must have download.

Check it out:Cool stuff to know

treeB

Tagged with: graphicalPowershell 
Page 1 of 212

Answers Rating

  • LowCostGamingLaptop: The XPS is my choice. Both should do what you want but i prefer the XPS. I love...  Thumb up 0
  • J: DELL XPS  Thumb up 0
  • Sean: I would deff say a dell xps because the manufacturer is better than lenovo. Although Lenovo is...  Thumb up 0
  • Nick: i would go with a lenovo. they are very powerful and you will have no problems with compiling...  Thumb up 0
  • mohin: Check connection configuration. If you want to learn – how to install Linux in easy...  Thumb up 0
© 2010 Computersplace.net