Answer
;WITH cte
AS (SELECT ROW_NUMBER() OVER (PARTITION BY Col1, Col2, Col3
ORDER BY ( SELECT 0)) RN
FROM #MyTable)
DELETE FROM cte
WHERE RN > 1
Execution Plans
The execution plan for this is simpler and more efficient than that in the accepted answer as it does not require the self join.

Test Script
CREATE TABLE #MyTable
(
RowID int not null identity(1,1) primary key,
Col1 varchar(20) not null,
Col2 varchar(2048) not null,
Col3 tinyint not null
)
INSERT INTO #MyTable (Col1, Col2, Col3)
SELECT 'aaa', 'aaa', 10 UNION ALL
SELECT 'aaa', 'aaa', 10 UNION ALL
SELECT 'bbb', 'bbb', 20 UNION ALL
SELECT 'aaa', 'aaa', 10
;WITH cte
AS (SELECT ROW_NUMBER() OVER (PARTITION BY Col1, Col2, Col3
ORDER BY ( SELECT 0)) RN
/*NB: ORDER BY (SELECT 0) is used as we don't care about
ordering withing each partition. SQL Server doesn't allow
ordering by literal constants directly. e.g. `ORDER BY '0'`
Could also use ORDER BY $/0 for less typing as the division by
zero prevents the constant folding */
FROM #MyTable)
DELETE FROM cte
WHERE RN > 1
SELECT *
FROM #MyTable
DROP TABLE #MyTable